├── Kernel ├── MyPaclet.wl ├── AddOne.wl └── AddTwo.wl ├── Tests ├── AddOne.wlt ├── AddTwo.wlt └── Arithmetic.wlt ├── README.md ├── PacletInfo.wl ├── LICENSE └── Documentation └── English └── ReferencePages └── Symbols ├── AddTwo.nb └── AddOne.nb /Kernel/MyPaclet.wl: -------------------------------------------------------------------------------- 1 | < "AddOne-Initialization" 5 | ] 6 | 7 | VerificationTest[ 8 | AddOne @ 1, 9 | 2, 10 | TestID -> "AddOne-1" 11 | ] 12 | 13 | VerificationTest[ 14 | AddOne @ 2, 15 | 4, 16 | TestID -> "AddOne-2" 17 | ] -------------------------------------------------------------------------------- /Tests/AddTwo.wlt: -------------------------------------------------------------------------------- 1 | VerificationTest[ 2 | Needs[ "SamplePublisher`MyPaclet`" ], 3 | Null, 4 | TestID -> "AddTwo-Initialization" 5 | ] 6 | 7 | VerificationTest[ 8 | AddTwo @ 1, 9 | 3, 10 | TestID -> "AddTwo-1" 11 | ] 12 | 13 | VerificationTest[ 14 | AddTwo @ 2, 15 | 4, 16 | TestID -> "AddTwo-2" 17 | ] -------------------------------------------------------------------------------- /Tests/Arithmetic.wlt: -------------------------------------------------------------------------------- 1 | VerificationTest[ 2 | Needs[ "SamplePublisher`MyPaclet`" ], 3 | Null, 4 | TestID -> "Arithmetic-Initialization" 5 | ] 6 | 7 | naturalNumber[ n_ ] := Nest[ AddOne, 0, n ]; 8 | plus[ x_, y_ ] := Nest[ AddOne, x, y ]; 9 | times[ x_, y_ ] := Nest[ OperatorApplied[ plus ][ x ], 0, y ]; 10 | 11 | VerificationTest[ 12 | naturalNumber[ 5 ], 13 | 5, 14 | TestID -> "NaturalNumbers" 15 | ] 16 | 17 | VerificationTest[ 18 | plus[ 3, 4 ], 19 | 34, 20 | TestID -> "Addition" 21 | ] 22 | 23 | VerificationTest[ 24 | times[ 3, 4 ], 25 | 12, 26 | TestID -> "Multiplication" 27 | ] -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # PacletCICD-Examples-FewIssues 2 | 3 | This is a sample Paclet used for [PacletCICD](https://github.com/WolframResearch/PacletCICD) documentation examples that's meant to pass standard checks with only minor issues found. 4 | 5 | A local copy can be retrieved in Wolfram Language using the following steps. 6 | 7 | Install the [PacletCICD](https://github.com/WolframResearch/PacletCICD) Paclet: 8 | ```Mathematica 9 | PacletInstall[ResourceObject["Wolfram/PacletCICD"]] 10 | ``` 11 | 12 | Load the necessary context: 13 | ```Mathematica 14 | Needs["Wolfram`PacletCICD`"] 15 | ``` 16 | 17 | Get a directory containing this repository's source code: 18 | ```Mathematica 19 | ExampleDirectory["FewIssues"] 20 | ``` -------------------------------------------------------------------------------- /PacletInfo.wl: -------------------------------------------------------------------------------- 1 | PacletObject[ <| 2 | "Name" -> "SamplePublisher/MyPaclet", 3 | "Description" -> "This is an example paclet!", 4 | "Creator" -> "Sample Author", 5 | "Version" -> "1.7.0", 6 | "WolframVersion" -> "13.0+", 7 | "License" -> "MIT", 8 | "PublisherID" -> "SamplePublisher", 9 | "SourceControlURL" -> "https://github.com/WolframResearch/PacletCICD-Examples-MoreIssues", 10 | "Extensions" -> { 11 | { 12 | "Kernel", 13 | "Root" -> "Kernel", 14 | "Context" -> { "SamplePublisher`MyPaclet`" }, 15 | "Symbols" -> { 16 | "SamplePublisher`MyPaclet`AddOne", 17 | "SamplePublisher`MyPaclet`AddTwo" 18 | } 19 | }, 20 | { 21 | "Documentation", 22 | "Root" -> "Documentation", 23 | "Language" -> "English" 24 | }, 25 | { 26 | "Asset", 27 | "Assets" -> { { "License", "./LICENSE" } } 28 | } 29 | } 30 | |> ] -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Wolfram Research 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Documentation/English/ReferencePages/Symbols/AddTwo.nb: -------------------------------------------------------------------------------- 1 | Notebook[ 2 | { 3 | Cell[ 4 | TextData[ 5 | { 6 | "New in: ", 7 | Cell["??", "HistoryData", CellTags -> "New"], 8 | " | Modified in: ", 9 | Cell[" ", "HistoryData", CellTags -> "Modified"], 10 | " | Obsolete in: ", 11 | Cell[" ", "HistoryData", CellTags -> "Obsolete"], 12 | " | Excised in: ", 13 | Cell[" ", "HistoryData", CellTags -> "Excised"] 14 | } 15 | ], 16 | "History", 17 | CellID -> 315992852 18 | ], 19 | Cell[ 20 | "Created by: rhennigan on 01-24-2022 13:52:09", 21 | "AuthorDate", 22 | CellID -> 152905052 23 | ], 24 | Cell[ 25 | CellGroupData[ 26 | { 27 | Cell[ 28 | "Categorization", 29 | "CategorizationSection", 30 | CellID -> 7843621 31 | ], 32 | Cell[ 33 | "Symbol", 34 | "Categorization", 35 | CellLabel -> "Entity Type", 36 | CellID -> 916924192 37 | ], 38 | Cell[ 39 | "SamplePublisher/MyPaclet", 40 | "Categorization", 41 | CellLabel -> "Paclet Name", 42 | CellID -> 259923264 43 | ], 44 | Cell[ 45 | "SamplePublisher`MyPaclet`", 46 | "Categorization", 47 | CellLabel -> "Context", 48 | CellID -> 493608718 49 | ], 50 | Cell[ 51 | "SamplePublisher/MyPaclet/ref/AddTwo", 52 | "Categorization", 53 | CellLabel -> "URI", 54 | CellID -> 249486932 55 | ] 56 | }, 57 | Open 58 | ] 59 | ], 60 | Cell[ 61 | CellGroupData[ 62 | { 63 | Cell["Keywords", "KeywordsSection", CellID -> 244873706], 64 | Cell["XXXX", "Keywords", CellID -> 22980582] 65 | }, 66 | Open 67 | ] 68 | ], 69 | Cell[ 70 | CellGroupData[ 71 | { 72 | Cell[ 73 | "Syntax Templates", 74 | "TemplatesSection", 75 | CellID -> 110874324 76 | ], 77 | Cell[ 78 | BoxData[""], 79 | "Template", 80 | CellLabel -> "Additional Function Template", 81 | CellID -> 541802800 82 | ], 83 | Cell[ 84 | BoxData[""], 85 | "Template", 86 | CellLabel -> "Arguments Pattern", 87 | CellID -> 458641600 88 | ], 89 | Cell[ 90 | BoxData[""], 91 | "Template", 92 | CellLabel -> "Local Variables", 93 | CellID -> 177396531 94 | ], 95 | Cell[ 96 | BoxData[""], 97 | "Template", 98 | CellLabel -> "Color Equal Signs", 99 | CellID -> 5073292 100 | ] 101 | }, 102 | Open 103 | ] 104 | ], 105 | Cell[ 106 | CellGroupData[ 107 | { 108 | Cell["AddTwo", "ObjectName", CellID -> 194296696], 109 | Cell[ 110 | TextData[ 111 | { 112 | Cell[" ", "ModInfo"], 113 | Cell[ 114 | BoxData[ 115 | RowBox[ 116 | { 117 | ButtonBox[ 118 | "AddTwo", 119 | BaseStyle -> "Link", 120 | ButtonData -> "paclet:SamplePublisher/MyPaclet/ref/AddTwo" 121 | ], 122 | "[", 123 | StyleBox["x", "TI"], 124 | "]" 125 | } 126 | ] 127 | ], 128 | "InlineFormula" 129 | ], 130 | " \[LineSeparator]adds two to ", 131 | Cell[BoxData[StyleBox["x", "TI"]], "InlineFormula"], 132 | "." 133 | } 134 | ], 135 | "Usage", 136 | CellID -> 179722508 137 | ], 138 | Cell["XXXX", "Notes", CellID -> 703587237] 139 | }, 140 | Open 141 | ] 142 | ], 143 | Cell[ 144 | CellGroupData[ 145 | { 146 | Cell["Tech Notes", "TechNotesSection", CellID -> 98790299], 147 | Cell["XXXX", "Tutorials", CellID -> 218100253] 148 | }, 149 | Open 150 | ] 151 | ], 152 | Cell[ 153 | CellGroupData[ 154 | { 155 | Cell[ 156 | "Related Demonstrations", 157 | "RelatedDemonstrationsSection", 158 | CellID -> 231113341 159 | ], 160 | Cell["XXXX", "RelatedDemonstrations", CellID -> 297704150] 161 | }, 162 | Open 163 | ] 164 | ], 165 | Cell[ 166 | CellGroupData[ 167 | { 168 | Cell[ 169 | "Related Links", 170 | "RelatedLinksSection", 171 | CellID -> 85611606 172 | ], 173 | Cell["XXXX", "RelatedLinks", CellID -> 11270685] 174 | }, 175 | Open 176 | ] 177 | ], 178 | Cell[ 179 | CellGroupData[ 180 | { 181 | Cell["See Also", "SeeAlsoSection", CellID -> 758739326], 182 | Cell["XXXX", "SeeAlso", CellID -> 13315245] 183 | }, 184 | Open 185 | ] 186 | ], 187 | Cell[ 188 | CellGroupData[ 189 | { 190 | Cell[ 191 | "Related Guides", 192 | "MoreAboutSection", 193 | CellID -> 133359908 194 | ], 195 | Cell["XXXX", "MoreAbout", CellID -> 258822146] 196 | }, 197 | Open 198 | ] 199 | ], 200 | Cell[ 201 | CellGroupData[ 202 | { 203 | Cell[ 204 | BoxData[ 205 | InterpretationBox[ 206 | GridBox[ 207 | { 208 | { 209 | StyleBox["Examples", "PrimaryExamplesSection"], 210 | ButtonBox[ 211 | RowBox[ 212 | { 213 | RowBox[{"More", " ", "Examples"}], 214 | " ", 215 | "\[RightTriangle]" 216 | } 217 | ], 218 | BaseStyle -> "ExtendedExamplesLink", 219 | ButtonData :> "ExtendedExamples" 220 | ] 221 | } 222 | } 223 | ], 224 | $Line = 0; 225 | Null 226 | ] 227 | ], 228 | "PrimaryExamplesSection", 229 | CellID -> 66346642 230 | ], 231 | Cell[ 232 | BoxData[ 233 | RowBox[ 234 | {"Needs", "[", "\"SamplePublisher`MyPaclet`\"", "]"} 235 | ] 236 | ], 237 | "Input", 238 | CellLabel -> "In[4]:=", 239 | CellID -> 644759732 240 | ], 241 | Cell[ 242 | "Add two to something:", 243 | "ExampleText", 244 | CellID -> 295932735 245 | ], 246 | Cell[ 247 | CellGroupData[ 248 | { 249 | Cell[ 250 | BoxData[RowBox[{"AddTwo", "[", "1", "]"}]], 251 | "Input", 252 | CellLabel -> "In[5]:=", 253 | CellID -> 507318712 254 | ], 255 | Cell[ 256 | BoxData["3"], 257 | "Output", 258 | CellLabel -> "Out[5]=", 259 | CellID -> 155024189 260 | ] 261 | }, 262 | Open 263 | ] 264 | ] 265 | }, 266 | Open 267 | ] 268 | ], 269 | Cell[ 270 | CellGroupData[ 271 | { 272 | Cell[ 273 | "More Examples", 274 | "ExtendedExamplesSection", 275 | CellTags -> "ExtendedExamples", 276 | CellID -> 958707522 277 | ], 278 | Cell[ 279 | BoxData[ 280 | InterpretationBox[ 281 | Cell["Scope", "ExampleSection"], 282 | $Line = 0; 283 | Null 284 | ] 285 | ], 286 | "ExampleSection", 287 | CellID -> 320585530 288 | ], 289 | Cell[ 290 | BoxData[ 291 | InterpretationBox[ 292 | Cell["Generalizations & Extensions", "ExampleSection"], 293 | $Line = 0; 294 | Null 295 | ] 296 | ], 297 | "ExampleSection", 298 | CellID -> 561617303 299 | ], 300 | Cell[ 301 | CellGroupData[ 302 | { 303 | Cell[ 304 | BoxData[ 305 | InterpretationBox[ 306 | Cell["Options", "ExampleSection"], 307 | $Line = 0; 308 | Null 309 | ] 310 | ], 311 | "ExampleSection", 312 | CellID -> 475054224 313 | ], 314 | Cell[ 315 | BoxData[ 316 | InterpretationBox[ 317 | Cell["XXXX", "ExampleSubsection"], 318 | $Line = 0; 319 | Null 320 | ] 321 | ], 322 | "ExampleSubsection", 323 | CellID -> 219457718 324 | ], 325 | Cell[ 326 | BoxData[ 327 | InterpretationBox[ 328 | Cell["XXXX", "ExampleSubsection"], 329 | $Line = 0; 330 | Null 331 | ] 332 | ], 333 | "ExampleSubsection", 334 | CellID -> 777847882 335 | ] 336 | }, 337 | Open 338 | ] 339 | ], 340 | Cell[ 341 | BoxData[ 342 | InterpretationBox[ 343 | Cell["Applications", "ExampleSection"], 344 | $Line = 0; 345 | Null 346 | ] 347 | ], 348 | "ExampleSection", 349 | CellID -> 112120342 350 | ], 351 | Cell[ 352 | BoxData[ 353 | InterpretationBox[ 354 | Cell["Properties & Relations", "ExampleSection"], 355 | $Line = 0; 356 | Null 357 | ] 358 | ], 359 | "ExampleSection", 360 | CellID -> 695592715 361 | ], 362 | Cell[ 363 | BoxData[ 364 | InterpretationBox[ 365 | Cell["Possible Issues", "ExampleSection"], 366 | $Line = 0; 367 | Null 368 | ] 369 | ], 370 | "ExampleSection", 371 | CellID -> 430854219 372 | ], 373 | Cell[ 374 | BoxData[ 375 | InterpretationBox[ 376 | Cell["Interactive Examples", "ExampleSection"], 377 | $Line = 0; 378 | Null 379 | ] 380 | ], 381 | "ExampleSection", 382 | CellID -> 13729787 383 | ], 384 | Cell[ 385 | BoxData[ 386 | InterpretationBox[ 387 | Cell["Neat Examples", "ExampleSection"], 388 | $Line = 0; 389 | Null 390 | ] 391 | ], 392 | "ExampleSection", 393 | CellID -> 110087917 394 | ] 395 | }, 396 | Open 397 | ] 398 | ] 399 | }, 400 | TaggingRules -> <| 401 | "Author" -> "rhennigan", 402 | "CreationDate" -> "01-24-2022 13:52:09" 403 | |>, 404 | CellContext -> "Global`", 405 | FrontEndVersion -> "13.0 for Microsoft Windows (64-bit) (December 2, 2021)", 406 | StyleDefinitions -> FrontEnd`FileName[ 407 | {"Wolfram"}, 408 | "FunctionPageStylesExt.nb", 409 | CharacterEncoding -> "UTF-8" 410 | ], 411 | ExpressionUUID -> "4b104d8b-f8c9-4c1a-9846-1faa068fec2e" 412 | ] -------------------------------------------------------------------------------- /Documentation/English/ReferencePages/Symbols/AddOne.nb: -------------------------------------------------------------------------------- 1 | Notebook[ 2 | { 3 | Cell[ 4 | TextData[ 5 | { 6 | "New in: ", 7 | Cell["??", "HistoryData", CellTags -> "New"], 8 | " | Modified in: ", 9 | Cell[" ", "HistoryData", CellTags -> "Modified"], 10 | " | Obsolete in: ", 11 | Cell[" ", "HistoryData", CellTags -> "Obsolete"], 12 | " | Excised in: ", 13 | Cell[" ", "HistoryData", CellTags -> "Excised"] 14 | } 15 | ], 16 | "History", 17 | CellID -> 187428174 18 | ], 19 | Cell[ 20 | "Created by: rhennigan on 01-24-2022 13:50:48", 21 | "AuthorDate", 22 | CellID -> 474417135 23 | ], 24 | Cell[ 25 | CellGroupData[ 26 | { 27 | Cell[ 28 | "Categorization", 29 | "CategorizationSection", 30 | CellID -> 534530772 31 | ], 32 | Cell[ 33 | "Symbol", 34 | "Categorization", 35 | CellLabel -> "Entity Type", 36 | CellID -> 544054244 37 | ], 38 | Cell[ 39 | "SamplePublisher/MyPaclet", 40 | "Categorization", 41 | CellLabel -> "Paclet Name", 42 | CellID -> 49967430 43 | ], 44 | Cell[ 45 | "SamplePublisher`MyPaclet`", 46 | "Categorization", 47 | CellLabel -> "Context", 48 | CellID -> 559698399 49 | ], 50 | Cell[ 51 | "SamplePublisher/MyPaclet/MyPaclet/ref/AddOne", 52 | "Categorization", 53 | CellLabel -> "URI", 54 | CellID -> 153856858 55 | ] 56 | }, 57 | Open 58 | ] 59 | ], 60 | Cell[ 61 | CellGroupData[ 62 | { 63 | Cell["Keywords", "KeywordsSection", CellID -> 25058059], 64 | Cell["XXXX", "Keywords", CellID -> 69676685] 65 | }, 66 | Open 67 | ] 68 | ], 69 | Cell[ 70 | CellGroupData[ 71 | { 72 | Cell[ 73 | "Syntax Templates", 74 | "TemplatesSection", 75 | CellID -> 311986639 76 | ], 77 | Cell[ 78 | BoxData[""], 79 | "Template", 80 | CellLabel -> "Additional Function Template", 81 | CellID -> 50098226 82 | ], 83 | Cell[ 84 | BoxData[""], 85 | "Template", 86 | CellLabel -> "Arguments Pattern", 87 | CellID -> 230041549 88 | ], 89 | Cell[ 90 | BoxData[""], 91 | "Template", 92 | CellLabel -> "Local Variables", 93 | CellID -> 3527392 94 | ], 95 | Cell[ 96 | BoxData[""], 97 | "Template", 98 | CellLabel -> "Color Equal Signs", 99 | CellID -> 6765112 100 | ] 101 | }, 102 | Open 103 | ] 104 | ], 105 | Cell[ 106 | CellGroupData[ 107 | { 108 | Cell["AddOne", "ObjectName", CellID -> 24997743], 109 | Cell[ 110 | TextData[ 111 | { 112 | Cell[" ", "ModInfo"], 113 | Cell[ 114 | BoxData[ 115 | RowBox[ 116 | { 117 | ButtonBox[ 118 | "AddOne", 119 | BaseStyle -> "Link", 120 | ButtonData -> "paclet:SamplePublisher/MyPaclet/MyPaclet/ref/AddOne" 121 | ], 122 | "[", 123 | StyleBox["x", "TI"], 124 | "]" 125 | } 126 | ] 127 | ], 128 | "InlineFormula" 129 | ], 130 | " \[LineSeparator]adds one to ", 131 | Cell[BoxData[StyleBox["x", "TI"]], "InlineFormula"], 132 | "." 133 | } 134 | ], 135 | "Usage", 136 | CellID -> 351056415 137 | ], 138 | Cell["XXXX", "Notes", CellID -> 243603386] 139 | }, 140 | Open 141 | ] 142 | ], 143 | Cell[ 144 | CellGroupData[ 145 | { 146 | Cell["Tech Notes", "TechNotesSection", CellID -> 609797114], 147 | Cell["XXXX", "Tutorials", CellID -> 23558969] 148 | }, 149 | Open 150 | ] 151 | ], 152 | Cell[ 153 | CellGroupData[ 154 | { 155 | Cell[ 156 | "Related Demonstrations", 157 | "RelatedDemonstrationsSection", 158 | CellID -> 321025806 159 | ], 160 | Cell["XXXX", "RelatedDemonstrations", CellID -> 472105588] 161 | }, 162 | Open 163 | ] 164 | ], 165 | Cell[ 166 | CellGroupData[ 167 | { 168 | Cell[ 169 | "Related Links", 170 | "RelatedLinksSection", 171 | CellID -> 176565266 172 | ], 173 | Cell["XXXX", "RelatedLinks", CellID -> 192621024] 174 | }, 175 | Open 176 | ] 177 | ], 178 | Cell[ 179 | CellGroupData[ 180 | { 181 | Cell["See Also", "SeeAlsoSection", CellID -> 203432188], 182 | Cell["XXXX", "SeeAlso", CellID -> 183361636] 183 | }, 184 | Open 185 | ] 186 | ], 187 | Cell[ 188 | CellGroupData[ 189 | { 190 | Cell[ 191 | "Related Guides", 192 | "MoreAboutSection", 193 | CellID -> 769985 194 | ], 195 | Cell["XXXX", "MoreAbout", CellID -> 663012070] 196 | }, 197 | Open 198 | ] 199 | ], 200 | Cell[ 201 | CellGroupData[ 202 | { 203 | Cell[ 204 | BoxData[ 205 | InterpretationBox[ 206 | GridBox[ 207 | { 208 | { 209 | StyleBox["Examples", "PrimaryExamplesSection"], 210 | ButtonBox[ 211 | RowBox[ 212 | { 213 | RowBox[{"More", " ", "Examples"}], 214 | " ", 215 | "\[RightTriangle]" 216 | } 217 | ], 218 | BaseStyle -> "ExtendedExamplesLink", 219 | ButtonData :> "ExtendedExamples" 220 | ] 221 | } 222 | } 223 | ], 224 | $Line = 0; 225 | Null 226 | ] 227 | ], 228 | "PrimaryExamplesSection", 229 | CellID -> 33434298 230 | ], 231 | Cell[ 232 | BoxData[ 233 | RowBox[ 234 | {"Needs", "[", "\"SamplePublisher`MyPaclet`\"", "]"} 235 | ] 236 | ], 237 | "Input", 238 | CellLabel -> "In[2]:=", 239 | CellID -> 52936440 240 | ], 241 | Cell[ 242 | "Add one to something:", 243 | "ExampleText", 244 | CellID -> 295932735 245 | ], 246 | Cell[ 247 | CellGroupData[ 248 | { 249 | Cell[ 250 | BoxData[RowBox[{"AddOne", "[", "1", "]"}]], 251 | "Input", 252 | CellLabel -> "In[3]:=", 253 | CellID -> 507318712 254 | ], 255 | Cell[ 256 | BoxData["2"], 257 | "Output", 258 | CellLabel -> "Out[3]=", 259 | CellID -> 142676465 260 | ] 261 | }, 262 | Open 263 | ] 264 | ] 265 | }, 266 | Open 267 | ] 268 | ], 269 | Cell[ 270 | CellGroupData[ 271 | { 272 | Cell[ 273 | "More Examples", 274 | "ExtendedExamplesSection", 275 | CellTags -> "ExtendedExamples", 276 | CellID -> 361806219 277 | ], 278 | Cell[ 279 | BoxData[ 280 | InterpretationBox[ 281 | Cell["Scope", "ExampleSection"], 282 | $Line = 0; 283 | Null 284 | ] 285 | ], 286 | "ExampleSection", 287 | CellID -> 43871206 288 | ], 289 | Cell[ 290 | BoxData[ 291 | InterpretationBox[ 292 | Cell["Generalizations & Extensions", "ExampleSection"], 293 | $Line = 0; 294 | Null 295 | ] 296 | ], 297 | "ExampleSection", 298 | CellID -> 289657845 299 | ], 300 | Cell[ 301 | CellGroupData[ 302 | { 303 | Cell[ 304 | BoxData[ 305 | InterpretationBox[ 306 | Cell["Options", "ExampleSection"], 307 | $Line = 0; 308 | Null 309 | ] 310 | ], 311 | "ExampleSection", 312 | CellID -> 659978256 313 | ], 314 | Cell[ 315 | BoxData[ 316 | InterpretationBox[ 317 | Cell["XXXX", "ExampleSubsection"], 318 | $Line = 0; 319 | Null 320 | ] 321 | ], 322 | "ExampleSubsection", 323 | CellID -> 429907116 324 | ], 325 | Cell[ 326 | BoxData[ 327 | InterpretationBox[ 328 | Cell["XXXX", "ExampleSubsection"], 329 | $Line = 0; 330 | Null 331 | ] 332 | ], 333 | "ExampleSubsection", 334 | CellID -> 206416150 335 | ] 336 | }, 337 | Open 338 | ] 339 | ], 340 | Cell[ 341 | BoxData[ 342 | InterpretationBox[ 343 | Cell["Applications", "ExampleSection"], 344 | $Line = 0; 345 | Null 346 | ] 347 | ], 348 | "ExampleSection", 349 | CellID -> 239838154 350 | ], 351 | Cell[ 352 | BoxData[ 353 | InterpretationBox[ 354 | Cell["Properties & Relations", "ExampleSection"], 355 | $Line = 0; 356 | Null 357 | ] 358 | ], 359 | "ExampleSection", 360 | CellID -> 252884082 361 | ], 362 | Cell[ 363 | BoxData[ 364 | InterpretationBox[ 365 | Cell["Possible Issues", "ExampleSection"], 366 | $Line = 0; 367 | Null 368 | ] 369 | ], 370 | "ExampleSection", 371 | CellID -> 252784521 372 | ], 373 | Cell[ 374 | BoxData[ 375 | InterpretationBox[ 376 | Cell["Interactive Examples", "ExampleSection"], 377 | $Line = 0; 378 | Null 379 | ] 380 | ], 381 | "ExampleSection", 382 | CellID -> 73260748 383 | ], 384 | Cell[ 385 | BoxData[ 386 | InterpretationBox[ 387 | Cell["Neat Examples", "ExampleSection"], 388 | $Line = 0; 389 | Null 390 | ] 391 | ], 392 | "ExampleSection", 393 | CellID -> 230392378 394 | ] 395 | }, 396 | Open 397 | ] 398 | ] 399 | }, 400 | TaggingRules -> <| 401 | "Author" -> "rhennigan", 402 | "CreationDate" -> "01-24-2022 13:50:48" 403 | |>, 404 | CellContext -> "Global`", 405 | FrontEndVersion -> "13.0 for Microsoft Windows (64-bit) (December 2, 2021)", 406 | StyleDefinitions -> FrontEnd`FileName[ 407 | {"Wolfram"}, 408 | "FunctionPageStylesExt.nb", 409 | CharacterEncoding -> "UTF-8" 410 | ], 411 | ExpressionUUID -> "b7690d1b-06de-49d4-a254-41f33c59b937" 412 | ] --------------------------------------------------------------------------------