├── README.md
├── SparrowAtalsSizer.sln
├── SparrowAtalsSizer
├── Program.cs
├── Properties
│ └── AssemblyInfo.cs
├── SparrowAtalsSizer.csproj
└── packages.config
└── packages
├── ImageProcessor.2.9.1
├── ImageProcessor.2.9.1.nupkg
└── lib
│ └── net452
│ ├── ImageProcessor.dll
│ └── ImageProcessor.xml
└── System.ValueTuple.4.5.0
├── LICENSE.TXT
├── System.ValueTuple.4.5.0.nupkg
├── THIRD-PARTY-NOTICES.TXT
├── lib
├── MonoAndroid10
│ └── _._
├── MonoTouch10
│ └── _._
├── net461
│ ├── System.ValueTuple.dll
│ └── System.ValueTuple.xml
├── net47
│ ├── System.ValueTuple.dll
│ └── System.ValueTuple.xml
├── netcoreapp2.0
│ └── _._
├── netstandard1.0
│ ├── System.ValueTuple.dll
│ └── System.ValueTuple.xml
├── netstandard2.0
│ └── _._
├── portable-net40+sl4+win8+wp8
│ ├── System.ValueTuple.dll
│ └── System.ValueTuple.xml
├── uap10.0.16299
│ └── _._
├── xamarinios10
│ └── _._
├── xamarinmac20
│ └── _._
├── xamarintvos10
│ └── _._
└── xamarinwatchos10
│ └── _._
├── ref
├── MonoAndroid10
│ └── _._
├── MonoTouch10
│ └── _._
├── net461
│ └── System.ValueTuple.dll
├── net47
│ └── System.ValueTuple.dll
├── netcoreapp2.0
│ └── _._
├── netstandard2.0
│ └── _._
├── portable-net40+sl4+win8+wp8
│ └── System.ValueTuple.dll
├── uap10.0.16299
│ └── _._
├── xamarinios10
│ └── _._
├── xamarinmac20
│ └── _._
├── xamarintvos10
│ └── _._
└── xamarinwatchos10
│ └── _._
├── useSharedDesignerContext.txt
└── version.txt
/README.md:
--------------------------------------------------------------------------------
1 | # SparrowAtlasResizer
2 | p obvious at what it does.
3 |
4 |
5 | you can set a factor, and what directory or what file you want to resize.
6 |
7 | it'll do that.
8 |
9 | Only works with .xml/.png sparrow atlas' (not that I know sparrow atlas works with anything else??)
10 |
--------------------------------------------------------------------------------
/SparrowAtalsSizer.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SparrowAtalsSizer", "SparrowAtalsSizer\SparrowAtalsSizer.csproj", "{F1B2E49D-51BD-46A6-ACC3-7D3EEC3EF219}"
4 | EndProject
5 | Global
6 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
7 | Debug|Any CPU = Debug|Any CPU
8 | Release|Any CPU = Release|Any CPU
9 | EndGlobalSection
10 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
11 | {F1B2E49D-51BD-46A6-ACC3-7D3EEC3EF219}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
12 | {F1B2E49D-51BD-46A6-ACC3-7D3EEC3EF219}.Debug|Any CPU.Build.0 = Debug|Any CPU
13 | {F1B2E49D-51BD-46A6-ACC3-7D3EEC3EF219}.Release|Any CPU.ActiveCfg = Release|Any CPU
14 | {F1B2E49D-51BD-46A6-ACC3-7D3EEC3EF219}.Release|Any CPU.Build.0 = Release|Any CPU
15 | EndGlobalSection
16 | EndGlobal
17 |
--------------------------------------------------------------------------------
/SparrowAtalsSizer/Program.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Drawing;
3 | using System.IO;
4 | using System.Xml;
5 | using ImageProcessor;
6 | using ImageProcessor.Imaging;
7 |
8 |
9 | namespace SparrowAtalsSizer
10 | {
11 | internal class Program
12 | {
13 | public static string[] xml_vars =
14 | {
15 | "x", "y", "width", "height",
16 | "frameX", "frameY", "frameWidth", "frameHeight"
17 | };
18 |
19 | public static void Resize(string folder, float factor)
20 | {
21 | XmlDocument doc = new XmlDocument();
22 |
23 | string split = Directory.GetCurrentDirectory() + "\\" + folder.Split('.')[0];
24 |
25 | doc.Load(split + ".xml");
26 |
27 | if (doc.DocumentElement == null)
28 | {
29 | Console.WriteLine("yo fucked it");
30 | return;
31 | }
32 |
33 | ImageFactory factory = new ImageFactory();
34 | factory.Load(split + ".png");
35 |
36 |
37 | ResizeLayer l = new ResizeLayer(new Size((int)(factory.Image.Width * factor), (int)(factory.Image.Height * factor)), ResizeMode.Min, AnchorPosition.TopLeft, false);
38 |
39 | factory.Resize(l);
40 |
41 | factory.Save(split + ".png");
42 | Console.WriteLine("Saved " + split + ".png");
43 |
44 | foreach (XmlNode n in doc.DocumentElement.ChildNodes)
45 | {
46 |
47 | if (n.Name == "SubTexture")
48 | foreach (string s in xml_vars)
49 | foreach(XmlAttribute a in n.Attributes)
50 | if (a.Name == s)
51 | a.Value = (int.Parse(a.Value) * factor) + "";
52 | }
53 | doc.Save(split + ".xml");
54 | Console.WriteLine("Saved " + split + ".xml");
55 | }
56 |
57 | public static void Main(string[] args)
58 | {
59 | Console.WriteLine("Folder/image (Will not recurse through every folder): ");
60 |
61 | string folder = Console.ReadLine();
62 |
63 | if (folder == null)
64 | {
65 | Console.WriteLine("yo fucked it");
66 | return;
67 | }
68 | Console.WriteLine("Factor: ");
69 |
70 | float factor = 1;
71 |
72 | float.TryParse(Console.ReadLine(), out factor);
73 |
74 | Console.WriteLine("btw this will overwrite the original files, so make sure you know that. enter anything to say ok");
75 |
76 | Console.ReadLine(); // buffer
77 |
78 | Console.WriteLine("\n\nRESIZING IMAGES BY A FACTOR OF " + factor + "x\n\n");
79 |
80 | if (folder.Contains(".")) // file
81 | Resize(folder, factor);
82 | else
83 | {
84 | foreach (string f in Directory.GetFiles(folder))
85 | {
86 | if (f.EndsWith(".xml"))
87 | Resize(f, factor);
88 | }
89 | }
90 |
91 | Console.WriteLine("End of resize");
92 |
93 | Console.ReadLine();
94 | }
95 | }
96 | }
--------------------------------------------------------------------------------
/SparrowAtalsSizer/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 | using System.Runtime.InteropServices;
3 |
4 | // General Information about an assembly is controlled through the following
5 | // set of attributes. Change these attribute values to modify the information
6 | // associated with an assembly.
7 | [assembly: AssemblyTitle("SparrowAtalsSizer")]
8 | [assembly: AssemblyDescription("")]
9 | [assembly: AssemblyConfiguration("")]
10 | [assembly: AssemblyCompany("")]
11 | [assembly: AssemblyProduct("SparrowAtalsSizer")]
12 | [assembly: AssemblyCopyright("Copyright © 2023")]
13 | [assembly: AssemblyTrademark("")]
14 | [assembly: AssemblyCulture("")]
15 |
16 | // Setting ComVisible to false makes the types in this assembly not visible
17 | // to COM components. If you need to access a type in this assembly from
18 | // COM, set the ComVisible attribute to true on that type.
19 | [assembly: ComVisible(false)]
20 |
21 | // The following GUID is for the ID of the typelib if this project is exposed to COM
22 | [assembly: Guid("F1B2E49D-51BD-46A6-ACC3-7D3EEC3EF219")]
23 |
24 | // Version information for an assembly consists of the following four values:
25 | //
26 | // Major Version
27 | // Minor Version
28 | // Build Number
29 | // Revision
30 | //
31 | // You can specify all the values or you can default the Build and Revision Numbers
32 | // by using the '*' as shown below:
33 | // [assembly: AssemblyVersion("1.0.*")]
34 | [assembly: AssemblyVersion("1.0.0.0")]
35 | [assembly: AssemblyFileVersion("1.0.0.0")]
--------------------------------------------------------------------------------
/SparrowAtalsSizer/SparrowAtalsSizer.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Debug
6 | AnyCPU
7 | {F1B2E49D-51BD-46A6-ACC3-7D3EEC3EF219}
8 | Exe
9 | Properties
10 | SparrowAtalsSizer
11 | SparrowAtalsSizer
12 | v4.8
13 | 512
14 | true
15 |
16 |
17 | AnyCPU
18 | true
19 | full
20 | false
21 | bin\Debug\
22 | DEBUG;TRACE
23 | prompt
24 | 4
25 |
26 |
27 | AnyCPU
28 | pdbonly
29 | true
30 | bin\Release\
31 | TRACE
32 | prompt
33 | 4
34 |
35 |
36 |
37 | ..\packages\ImageProcessor.2.9.1\lib\net452\ImageProcessor.dll
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 | ..\packages\System.ValueTuple.4.5.0\lib\net47\System.ValueTuple.dll
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
64 |
65 |
66 |
--------------------------------------------------------------------------------
/SparrowAtalsSizer/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/packages/ImageProcessor.2.9.1/ImageProcessor.2.9.1.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kade-github/SparrowAtlasResizer/9c61ba7f381a40116a61cb5c73fac94ad68554e9/packages/ImageProcessor.2.9.1/ImageProcessor.2.9.1.nupkg
--------------------------------------------------------------------------------
/packages/ImageProcessor.2.9.1/lib/net452/ImageProcessor.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kade-github/SparrowAtlasResizer/9c61ba7f381a40116a61cb5c73fac94ad68554e9/packages/ImageProcessor.2.9.1/lib/net452/ImageProcessor.dll
--------------------------------------------------------------------------------
/packages/System.ValueTuple.4.5.0/LICENSE.TXT:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) .NET Foundation and Contributors
4 |
5 | All rights reserved.
6 |
7 | Permission is hereby granted, free of charge, to any person obtaining a copy
8 | of this software and associated documentation files (the "Software"), to deal
9 | in the Software without restriction, including without limitation the rights
10 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 | copies of the Software, and to permit persons to whom the Software is
12 | furnished to do so, subject to the following conditions:
13 |
14 | The above copyright notice and this permission notice shall be included in all
15 | copies or substantial portions of the Software.
16 |
17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 | SOFTWARE.
24 |
--------------------------------------------------------------------------------
/packages/System.ValueTuple.4.5.0/System.ValueTuple.4.5.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kade-github/SparrowAtlasResizer/9c61ba7f381a40116a61cb5c73fac94ad68554e9/packages/System.ValueTuple.4.5.0/System.ValueTuple.4.5.0.nupkg
--------------------------------------------------------------------------------
/packages/System.ValueTuple.4.5.0/THIRD-PARTY-NOTICES.TXT:
--------------------------------------------------------------------------------
1 | .NET Core uses third-party libraries or other resources that may be
2 | distributed under licenses different than the .NET Core software.
3 |
4 | In the event that we accidentally failed to list a required notice, please
5 | bring it to our attention. Post an issue or email us:
6 |
7 | dotnet@microsoft.com
8 |
9 | The attached notices are provided for information only.
10 |
11 | License notice for Slicing-by-8
12 | -------------------------------
13 |
14 | http://sourceforge.net/projects/slicing-by-8/
15 |
16 | Copyright (c) 2004-2006 Intel Corporation - All Rights Reserved
17 |
18 |
19 | This software program is licensed subject to the BSD License, available at
20 | http://www.opensource.org/licenses/bsd-license.html.
21 |
22 |
23 | License notice for Unicode data
24 | -------------------------------
25 |
26 | http://www.unicode.org/copyright.html#License
27 |
28 | Copyright © 1991-2017 Unicode, Inc. All rights reserved.
29 | Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
30 |
31 | Permission is hereby granted, free of charge, to any person obtaining
32 | a copy of the Unicode data files and any associated documentation
33 | (the "Data Files") or Unicode software and any associated documentation
34 | (the "Software") to deal in the Data Files or Software
35 | without restriction, including without limitation the rights to use,
36 | copy, modify, merge, publish, distribute, and/or sell copies of
37 | the Data Files or Software, and to permit persons to whom the Data Files
38 | or Software are furnished to do so, provided that either
39 | (a) this copyright and permission notice appear with all copies
40 | of the Data Files or Software, or
41 | (b) this copyright and permission notice appear in associated
42 | Documentation.
43 |
44 | THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF
45 | ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
46 | WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
47 | NONINFRINGEMENT OF THIRD PARTY RIGHTS.
48 | IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS
49 | NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL
50 | DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
51 | DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
52 | TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
53 | PERFORMANCE OF THE DATA FILES OR SOFTWARE.
54 |
55 | Except as contained in this notice, the name of a copyright holder
56 | shall not be used in advertising or otherwise to promote the sale,
57 | use or other dealings in these Data Files or Software without prior
58 | written authorization of the copyright holder.
59 |
60 | License notice for Zlib
61 | -----------------------
62 |
63 | https://github.com/madler/zlib
64 | http://zlib.net/zlib_license.html
65 |
66 | /* zlib.h -- interface of the 'zlib' general purpose compression library
67 | version 1.2.11, January 15th, 2017
68 |
69 | Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler
70 |
71 | This software is provided 'as-is', without any express or implied
72 | warranty. In no event will the authors be held liable for any damages
73 | arising from the use of this software.
74 |
75 | Permission is granted to anyone to use this software for any purpose,
76 | including commercial applications, and to alter it and redistribute it
77 | freely, subject to the following restrictions:
78 |
79 | 1. The origin of this software must not be misrepresented; you must not
80 | claim that you wrote the original software. If you use this software
81 | in a product, an acknowledgment in the product documentation would be
82 | appreciated but is not required.
83 | 2. Altered source versions must be plainly marked as such, and must not be
84 | misrepresented as being the original software.
85 | 3. This notice may not be removed or altered from any source distribution.
86 |
87 | Jean-loup Gailly Mark Adler
88 | jloup@gzip.org madler@alumni.caltech.edu
89 |
90 | */
91 |
92 | License notice for Mono
93 | -------------------------------
94 |
95 | http://www.mono-project.com/docs/about-mono/
96 |
97 | Copyright (c) .NET Foundation Contributors
98 |
99 | MIT License
100 |
101 | Permission is hereby granted, free of charge, to any person obtaining a copy
102 | of this software and associated documentation files (the Software), to deal
103 | in the Software without restriction, including without limitation the rights
104 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
105 | copies of the Software, and to permit persons to whom the Software is
106 | furnished to do so, subject to the following conditions:
107 |
108 | The above copyright notice and this permission notice shall be included in all
109 | copies or substantial portions of the Software.
110 |
111 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
112 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
113 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
114 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
115 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
116 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
117 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
118 |
119 | License notice for International Organization for Standardization
120 | -----------------------------------------------------------------
121 |
122 | Portions (C) International Organization for Standardization 1986:
123 | Permission to copy in any form is granted for use with
124 | conforming SGML systems and applications as defined in
125 | ISO 8879, provided this notice is included in all copies.
126 |
127 | License notice for Intel
128 | ------------------------
129 |
130 | "Copyright (c) 2004-2006 Intel Corporation - All Rights Reserved
131 |
132 | Redistribution and use in source and binary forms, with or without
133 | modification, are permitted provided that the following conditions are met:
134 |
135 | 1. Redistributions of source code must retain the above copyright notice, this
136 | list of conditions and the following disclaimer.
137 |
138 | 2. Redistributions in binary form must reproduce the above copyright notice,
139 | this list of conditions and the following disclaimer in the documentation
140 | and/or other materials provided with the distribution.
141 |
142 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
143 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
144 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
145 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
146 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
147 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
148 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
149 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
150 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
151 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
152 |
153 | License notice for Xamarin and Novell
154 | -------------------------------------
155 |
156 | Copyright (c) 2015 Xamarin, Inc (http://www.xamarin.com)
157 |
158 | Permission is hereby granted, free of charge, to any person obtaining a copy
159 | of this software and associated documentation files (the "Software"), to deal
160 | in the Software without restriction, including without limitation the rights
161 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
162 | copies of the Software, and to permit persons to whom the Software is
163 | furnished to do so, subject to the following conditions:
164 |
165 | The above copyright notice and this permission notice shall be included in
166 | all copies or substantial portions of the Software.
167 |
168 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
169 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
170 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
171 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
172 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
173 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
174 | THE SOFTWARE.
175 |
176 | Copyright (c) 2011 Novell, Inc (http://www.novell.com)
177 |
178 | Permission is hereby granted, free of charge, to any person obtaining a copy
179 | of this software and associated documentation files (the "Software"), to deal
180 | in the Software without restriction, including without limitation the rights
181 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
182 | copies of the Software, and to permit persons to whom the Software is
183 | furnished to do so, subject to the following conditions:
184 |
185 | The above copyright notice and this permission notice shall be included in
186 | all copies or substantial portions of the Software.
187 |
188 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
189 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
190 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
191 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
192 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
193 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
194 | THE SOFTWARE.
195 |
196 | Third party notice for W3C
197 | --------------------------
198 |
199 | "W3C SOFTWARE AND DOCUMENT NOTICE AND LICENSE
200 | Status: This license takes effect 13 May, 2015.
201 | This work is being provided by the copyright holders under the following license.
202 | License
203 | By obtaining and/or copying this work, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions.
204 | Permission to copy, modify, and distribute this work, with or without modification, for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the work or portions thereof, including modifications:
205 | The full text of this NOTICE in a location viewable to users of the redistributed or derivative work.
206 | Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, the W3C Software and Document Short Notice should be included.
207 | Notice of any changes or modifications, through a copyright statement on the new code or document such as "This software or document includes material copied from or derived from [title and URI of the W3C document]. Copyright © [YEAR] W3C® (MIT, ERCIM, Keio, Beihang)."
208 | Disclaimers
209 | THIS WORK IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENT WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.
210 | COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENT.
211 | The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the work without specific, written prior permission. Title to copyright in this work will at all times remain with copyright holders."
212 |
213 | License notice for Bit Twiddling Hacks
214 | --------------------------------------
215 |
216 | Bit Twiddling Hacks
217 |
218 | By Sean Eron Anderson
219 | seander@cs.stanford.edu
220 |
221 | Individually, the code snippets here are in the public domain (unless otherwise
222 | noted) — feel free to use them however you please. The aggregate collection and
223 | descriptions are © 1997-2005 Sean Eron Anderson. The code and descriptions are
224 | distributed in the hope that they will be useful, but WITHOUT ANY WARRANTY and
225 | without even the implied warranty of merchantability or fitness for a particular
226 | purpose.
227 |
228 | License notice for Brotli
229 | --------------------------------------
230 |
231 | Copyright (c) 2009, 2010, 2013-2016 by the Brotli Authors.
232 |
233 | Permission is hereby granted, free of charge, to any person obtaining a copy
234 | of this software and associated documentation files (the "Software"), to deal
235 | in the Software without restriction, including without limitation the rights
236 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
237 | copies of the Software, and to permit persons to whom the Software is
238 | furnished to do so, subject to the following conditions:
239 |
240 | The above copyright notice and this permission notice shall be included in
241 | all copies or substantial portions of the Software.
242 |
243 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
244 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
245 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
246 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
247 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
248 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
249 | THE SOFTWARE.
250 |
251 | compress_fragment.c:
252 | Copyright (c) 2011, Google Inc.
253 | All rights reserved.
254 |
255 | Redistribution and use in source and binary forms, with or without
256 | modification, are permitted provided that the following conditions are
257 | met:
258 |
259 | * Redistributions of source code must retain the above copyright
260 | notice, this list of conditions and the following disclaimer.
261 | * Redistributions in binary form must reproduce the above
262 | copyright notice, this list of conditions and the following disclaimer
263 | in the documentation and/or other materials provided with the
264 | distribution.
265 | * Neither the name of Google Inc. nor the names of its
266 | contributors may be used to endorse or promote products derived from
267 | this software without specific prior written permission.
268 |
269 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
270 | ""AS IS"" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
271 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
272 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
273 | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
274 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
275 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
276 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
277 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
278 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
279 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
280 |
281 | decode_fuzzer.c:
282 | Copyright (c) 2015 The Chromium Authors. All rights reserved.
283 |
284 | Redistribution and use in source and binary forms, with or without
285 | modification, are permitted provided that the following conditions are
286 | met:
287 |
288 | * Redistributions of source code must retain the above copyright
289 | notice, this list of conditions and the following disclaimer.
290 | * Redistributions in binary form must reproduce the above
291 | copyright notice, this list of conditions and the following disclaimer
292 | in the documentation and/or other materials provided with the
293 | distribution.
294 | * Neither the name of Google Inc. nor the names of its
295 | contributors may be used to endorse or promote products derived from
296 | this software without specific prior written permission.
297 |
298 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
299 | ""AS IS"" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
300 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
301 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
302 | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
303 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
304 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
305 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
306 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
307 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
308 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
309 |
310 |
--------------------------------------------------------------------------------
/packages/System.ValueTuple.4.5.0/lib/MonoAndroid10/_._:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kade-github/SparrowAtlasResizer/9c61ba7f381a40116a61cb5c73fac94ad68554e9/packages/System.ValueTuple.4.5.0/lib/MonoAndroid10/_._
--------------------------------------------------------------------------------
/packages/System.ValueTuple.4.5.0/lib/MonoTouch10/_._:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kade-github/SparrowAtlasResizer/9c61ba7f381a40116a61cb5c73fac94ad68554e9/packages/System.ValueTuple.4.5.0/lib/MonoTouch10/_._
--------------------------------------------------------------------------------
/packages/System.ValueTuple.4.5.0/lib/net461/System.ValueTuple.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kade-github/SparrowAtlasResizer/9c61ba7f381a40116a61cb5c73fac94ad68554e9/packages/System.ValueTuple.4.5.0/lib/net461/System.ValueTuple.dll
--------------------------------------------------------------------------------
/packages/System.ValueTuple.4.5.0/lib/net461/System.ValueTuple.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | System.ValueTuple
5 |
6 |
7 |
8 |
9 | Indicates that the use of on a member is meant to be treated as a tuple with element names.
10 |
11 |
12 |
13 |
14 | Initializes a new instance of the class.
16 |
17 |
18 | Specifies, in a pre-order depth-first traversal of a type's
19 | construction, which occurrences are
20 | meant to carry element names.
21 |
22 |
23 | This constructor is meant to be used on types that contain an
24 | instantiation of that contains
25 | element names. For instance, if C is a generic type with
26 | two type parameters, then a use of the constructed type C{, might be intended to
29 | treat the first type argument as a tuple with element names and the
30 | second as a tuple without element names. In which case, the
31 | appropriate attribute specification should use a
32 | transformNames value of { "name1", "name2", null, null,
33 | null }.
34 |
35 |
36 |
37 |
38 | Specifies, in a pre-order depth-first traversal of a type's
39 | construction, which elements are
40 | meant to carry element names.
41 |
42 |
43 |
44 |
45 | Provides extension methods for instances to interop with C# tuples features (deconstruction syntax, converting from and to ).
46 |
47 |
48 |
49 |
50 | Deconstruct a properly nested with 1 elements.
51 |
52 |
53 |
54 |
55 | Deconstruct a properly nested with 2 elements.
56 |
57 |
58 |
59 |
60 | Deconstruct a properly nested with 3 elements.
61 |
62 |
63 |
64 |
65 | Deconstruct a properly nested with 4 elements.
66 |
67 |
68 |
69 |
70 | Deconstruct a properly nested with 5 elements.
71 |
72 |
73 |
74 |
75 | Deconstruct a properly nested with 6 elements.
76 |
77 |
78 |
79 |
80 | Deconstruct a properly nested with 7 elements.
81 |
82 |
83 |
84 |
85 | Deconstruct a properly nested with 8 elements.
86 |
87 |
88 |
89 |
90 | Deconstruct a properly nested with 9 elements.
91 |
92 |
93 |
94 |
95 | Deconstruct a properly nested with 10 elements.
96 |
97 |
98 |
99 |
100 | Deconstruct a properly nested with 11 elements.
101 |
102 |
103 |
104 |
105 | Deconstruct a properly nested with 12 elements.
106 |
107 |
108 |
109 |
110 | Deconstruct a properly nested with 13 elements.
111 |
112 |
113 |
114 |
115 | Deconstruct a properly nested with 14 elements.
116 |
117 |
118 |
119 |
120 | Deconstruct a properly nested with 15 elements.
121 |
122 |
123 |
124 |
125 | Deconstruct a properly nested with 16 elements.
126 |
127 |
128 |
129 |
130 | Deconstruct a properly nested with 17 elements.
131 |
132 |
133 |
134 |
135 | Deconstruct a properly nested with 18 elements.
136 |
137 |
138 |
139 |
140 | Deconstruct a properly nested with 19 elements.
141 |
142 |
143 |
144 |
145 | Deconstruct a properly nested with 20 elements.
146 |
147 |
148 |
149 |
150 | Deconstruct a properly nested with 21 elements.
151 |
152 |
153 |
154 |
155 | Make a properly nested from a properly nested with 1 element.
156 |
157 |
158 |
159 |
160 | Make a properly nested from a properly nested with 2 elements.
161 |
162 |
163 |
164 |
165 | Make a properly nested from a properly nested with 3 elements.
166 |
167 |
168 |
169 |
170 | Make a properly nested from a properly nested with 4 elements.
171 |
172 |
173 |
174 |
175 | Make a properly nested from a properly nested with 5 elements.
176 |
177 |
178 |
179 |
180 | Make a properly nested from a properly nested with 6 elements.
181 |
182 |
183 |
184 |
185 | Make a properly nested from a properly nested with 7 elements.
186 |
187 |
188 |
189 |
190 | Make a properly nested from a properly nested with 8 elements.
191 |
192 |
193 |
194 |
195 | Make a properly nested from a properly nested with 9 elements.
196 |
197 |
198 |
199 |
200 | Make a properly nested from a properly nested with 10 elements.
201 |
202 |
203 |
204 |
205 | Make a properly nested from a properly nested with 11 elements.
206 |
207 |
208 |
209 |
210 | Make a properly nested from a properly nested with 12 elements.
211 |
212 |
213 |
214 |
215 | Make a properly nested from a properly nested with 13 elements.
216 |
217 |
218 |
219 |
220 | Make a properly nested from a properly nested with 14 elements.
221 |
222 |
223 |
224 |
225 | Make a properly nested from a properly nested with 15 elements.
226 |
227 |
228 |
229 |
230 | Make a properly nested from a properly nested with 16 elements.
231 |
232 |
233 |
234 |
235 | Make a properly nested from a properly nested with 17 elements.
236 |
237 |
238 |
239 |
240 | Make a properly nested from a properly nested with 18 elements.
241 |
242 |
243 |
244 |
245 | Make a properly nested from a properly nested with 19 elements.
246 |
247 |
248 |
249 |
250 | Make a properly nested from a properly nested with 20 elements.
251 |
252 |
253 |
254 |
255 | Make a properly nested from a properly nested with 21 elements.
256 |
257 |
258 |
259 |
260 | Make a properly nested from a properly nested with 1 element.
261 |
262 |
263 |
264 |
265 | Make a properly nested from a properly nested with 2 elements.
266 |
267 |
268 |
269 |
270 | Make a properly nested from a properly nested with 3 elements.
271 |
272 |
273 |
274 |
275 | Make a properly nested from a properly nested with 4 elements.
276 |
277 |
278 |
279 |
280 | Make a properly nested from a properly nested with 5 elements.
281 |
282 |
283 |
284 |
285 | Make a properly nested from a properly nested with 6 elements.
286 |
287 |
288 |
289 |
290 | Make a properly nested from a properly nested with 7 elements.
291 |
292 |
293 |
294 |
295 | Make a properly nested from a properly nested with 8 elements.
296 |
297 |
298 |
299 |
300 | Make a properly nested from a properly nested with 9 elements.
301 |
302 |
303 |
304 |
305 | Make a properly nested from a properly nested with 10 elements.
306 |
307 |
308 |
309 |
310 | Make a properly nested from a properly nested with 11 elements.
311 |
312 |
313 |
314 |
315 | Make a properly nested from a properly nested with 12 elements.
316 |
317 |
318 |
319 |
320 | Make a properly nested from a properly nested with 13 elements.
321 |
322 |
323 |
324 |
325 | Make a properly nested from a properly nested with 14 elements.
326 |
327 |
328 |
329 |
330 | Make a properly nested from a properly nested with 15 elements.
331 |
332 |
333 |
334 |
335 | Make a properly nested from a properly nested with 16 elements.
336 |
337 |
338 |
339 |
340 | Make a properly nested from a properly nested with 17 elements.
341 |
342 |
343 |
344 |
345 | Make a properly nested from a properly nested with 18 elements.
346 |
347 |
348 |
349 |
350 | Make a properly nested from a properly nested with 19 elements.
351 |
352 |
353 |
354 |
355 | Make a properly nested from a properly nested with 20 elements.
356 |
357 |
358 |
359 |
360 | Make a properly nested from a properly nested with 21 elements.
361 |
362 |
363 |
364 |
365 | Helper so we can call some tuple methods recursively without knowing the underlying types.
366 |
367 |
368 |
369 |
370 | The ValueTuple types (from arity 0 to 8) comprise the runtime implementation that underlies tuples in C# and struct tuples in F#.
371 | Aside from created via language syntax, they are most easily created via the ValueTuple.Create factory methods.
372 | The System.ValueTuple types differ from the System.Tuple types in that:
373 | - they are structs rather than classes,
374 | - they are mutable rather than readonly, and
375 | - their members (such as Item1, Item2, etc) are fields rather than properties.
376 |
377 |
378 |
379 |
380 | Returns a value that indicates whether the current instance is equal to a specified object.
381 |
382 | The object to compare with this instance.
383 | if is a .
384 |
385 |
386 | Returns a value indicating whether this instance is equal to a specified value.
387 | An instance to compare to this instance.
388 | true if has the same value as this instance; otherwise, false.
389 |
390 |
391 | Compares this instance to a specified instance and returns an indication of their relative values.
392 | An instance to compare.
393 |
394 | A signed number indicating the relative values of this instance and .
395 | Returns less than zero if this instance is less than , zero if this
396 | instance is equal to , and greater than zero if this instance is greater
397 | than .
398 |
399 |
400 |
401 | Returns the hash code for this instance.
402 | A 32-bit signed integer hash code.
403 |
404 |
405 |
406 | Returns a string that represents the value of this instance.
407 |
408 | The string representation of this instance.
409 |
410 | The string returned by this method takes the form ().
411 |
412 |
413 |
414 | Creates a new struct 0-tuple.
415 | A 0-tuple.
416 |
417 |
418 | Creates a new struct 1-tuple, or singleton.
419 | The type of the first component of the tuple.
420 | The value of the first component of the tuple.
421 | A 1-tuple (singleton) whose value is (item1).
422 |
423 |
424 | Creates a new struct 2-tuple, or pair.
425 | The type of the first component of the tuple.
426 | The type of the second component of the tuple.
427 | The value of the first component of the tuple.
428 | The value of the second component of the tuple.
429 | A 2-tuple (pair) whose value is (item1, item2).
430 |
431 |
432 | Creates a new struct 3-tuple, or triple.
433 | The type of the first component of the tuple.
434 | The type of the second component of the tuple.
435 | The type of the third component of the tuple.
436 | The value of the first component of the tuple.
437 | The value of the second component of the tuple.
438 | The value of the third component of the tuple.
439 | A 3-tuple (triple) whose value is (item1, item2, item3).
440 |
441 |
442 | Creates a new struct 4-tuple, or quadruple.
443 | The type of the first component of the tuple.
444 | The type of the second component of the tuple.
445 | The type of the third component of the tuple.
446 | The type of the fourth component of the tuple.
447 | The value of the first component of the tuple.
448 | The value of the second component of the tuple.
449 | The value of the third component of the tuple.
450 | The value of the fourth component of the tuple.
451 | A 4-tuple (quadruple) whose value is (item1, item2, item3, item4).
452 |
453 |
454 | Creates a new struct 5-tuple, or quintuple.
455 | The type of the first component of the tuple.
456 | The type of the second component of the tuple.
457 | The type of the third component of the tuple.
458 | The type of the fourth component of the tuple.
459 | The type of the fifth component of the tuple.
460 | The value of the first component of the tuple.
461 | The value of the second component of the tuple.
462 | The value of the third component of the tuple.
463 | The value of the fourth component of the tuple.
464 | The value of the fifth component of the tuple.
465 | A 5-tuple (quintuple) whose value is (item1, item2, item3, item4, item5).
466 |
467 |
468 | Creates a new struct 6-tuple, or sextuple.
469 | The type of the first component of the tuple.
470 | The type of the second component of the tuple.
471 | The type of the third component of the tuple.
472 | The type of the fourth component of the tuple.
473 | The type of the fifth component of the tuple.
474 | The type of the sixth component of the tuple.
475 | The value of the first component of the tuple.
476 | The value of the second component of the tuple.
477 | The value of the third component of the tuple.
478 | The value of the fourth component of the tuple.
479 | The value of the fifth component of the tuple.
480 | The value of the sixth component of the tuple.
481 | A 6-tuple (sextuple) whose value is (item1, item2, item3, item4, item5, item6).
482 |
483 |
484 | Creates a new struct 7-tuple, or septuple.
485 | The type of the first component of the tuple.
486 | The type of the second component of the tuple.
487 | The type of the third component of the tuple.
488 | The type of the fourth component of the tuple.
489 | The type of the fifth component of the tuple.
490 | The type of the sixth component of the tuple.
491 | The type of the seventh component of the tuple.
492 | The value of the first component of the tuple.
493 | The value of the second component of the tuple.
494 | The value of the third component of the tuple.
495 | The value of the fourth component of the tuple.
496 | The value of the fifth component of the tuple.
497 | The value of the sixth component of the tuple.
498 | The value of the seventh component of the tuple.
499 | A 7-tuple (septuple) whose value is (item1, item2, item3, item4, item5, item6, item7).
500 |
501 |
502 | Creates a new struct 8-tuple, or octuple.
503 | The type of the first component of the tuple.
504 | The type of the second component of the tuple.
505 | The type of the third component of the tuple.
506 | The type of the fourth component of the tuple.
507 | The type of the fifth component of the tuple.
508 | The type of the sixth component of the tuple.
509 | The type of the seventh component of the tuple.
510 | The type of the eighth component of the tuple.
511 | The value of the first component of the tuple.
512 | The value of the second component of the tuple.
513 | The value of the third component of the tuple.
514 | The value of the fourth component of the tuple.
515 | The value of the fifth component of the tuple.
516 | The value of the sixth component of the tuple.
517 | The value of the seventh component of the tuple.
518 | The value of the eighth component of the tuple.
519 | An 8-tuple (octuple) whose value is (item1, item2, item3, item4, item5, item6, item7, item8).
520 |
521 |
522 | Represents a 1-tuple, or singleton, as a value type.
523 | The type of the tuple's only component.
524 |
525 |
526 |
527 | The current instance's first component.
528 |
529 |
530 |
531 |
532 | Initializes a new instance of the value type.
533 |
534 | The value of the tuple's first component.
535 |
536 |
537 |
538 | Returns a value that indicates whether the current instance is equal to a specified object.
539 |
540 | The object to compare with this instance.
541 | if the current instance is equal to the specified object; otherwise, .
542 |
543 | The parameter is considered to be equal to the current instance under the following conditions:
544 |
545 | - It is a value type.
546 | - Its components are of the same types as those of the current instance.
547 | - Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component.
548 |
549 |
550 |
551 |
552 |
553 | Returns a value that indicates whether the current
554 | instance is equal to a specified .
555 |
556 | The tuple to compare with this instance.
557 | if the current instance is equal to the specified tuple; otherwise, .
558 |
559 | The parameter is considered to be equal to the current instance if each of its field
560 | is equal to that of the current instance, using the default comparer for that field's type.
561 |
562 |
563 |
564 | Compares this instance to a specified instance and returns an indication of their relative values.
565 | An instance to compare.
566 |
567 | A signed number indicating the relative values of this instance and .
568 | Returns less than zero if this instance is less than , zero if this
569 | instance is equal to , and greater than zero if this instance is greater
570 | than .
571 |
572 |
573 |
574 |
575 | Returns the hash code for the current instance.
576 |
577 | A 32-bit signed integer hash code.
578 |
579 |
580 |
581 | Returns a string that represents the value of this instance.
582 |
583 | The string representation of this instance.
584 |
585 | The string returned by this method takes the form (Item1),
586 | where Item1 represents the value of . If the field is ,
587 | it is represented as .
588 |
589 |
590 |
591 |
592 | Represents a 2-tuple, or pair, as a value type.
593 |
594 | The type of the tuple's first component.
595 | The type of the tuple's second component.
596 |
597 |
598 |
599 | The current instance's first component.
600 |
601 |
602 |
603 |
604 | The current instance's second component.
605 |
606 |
607 |
608 |
609 | Initializes a new instance of the value type.
610 |
611 | The value of the tuple's first component.
612 | The value of the tuple's second component.
613 |
614 |
615 |
616 | Returns a value that indicates whether the current instance is equal to a specified object.
617 |
618 | The object to compare with this instance.
619 | if the current instance is equal to the specified object; otherwise, .
620 |
621 |
622 | The parameter is considered to be equal to the current instance under the following conditions:
623 |
624 | - It is a value type.
625 | - Its components are of the same types as those of the current instance.
626 | - Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component.
627 |
628 |
629 |
630 |
631 |
632 | Returns a value that indicates whether the current instance is equal to a specified .
633 |
634 | The tuple to compare with this instance.
635 | if the current instance is equal to the specified tuple; otherwise, .
636 |
637 | The parameter is considered to be equal to the current instance if each of its fields
638 | are equal to that of the current instance, using the default comparer for that field's type.
639 |
640 |
641 |
642 |
643 | Returns a value that indicates whether the current instance is equal to a specified object based on a specified comparison method.
644 |
645 | The object to compare with this instance.
646 | An object that defines the method to use to evaluate whether the two objects are equal.
647 | if the current instance is equal to the specified object; otherwise, .
648 |
649 |
650 | This member is an explicit interface member implementation. It can be used only when the
651 | instance is cast to an interface.
652 |
653 | The implementation is called only if other is not ,
654 | and if it can be successfully cast (in C#) or converted (in Visual Basic) to a
655 | whose components are of the same types as those of the current instance. The IStructuralEquatable.Equals(Object, IEqualityComparer) method
656 | first passes the values of the objects to be compared to the
657 | implementation. If this method call returns , the method is
658 | called again and passed the values of the two instances.
659 |
660 |
661 |
662 | Compares this instance to a specified instance and returns an indication of their relative values.
663 | An instance to compare.
664 |
665 | A signed number indicating the relative values of this instance and .
666 | Returns less than zero if this instance is less than , zero if this
667 | instance is equal to , and greater than zero if this instance is greater
668 | than .
669 |
670 |
671 |
672 |
673 | Returns the hash code for the current instance.
674 |
675 | A 32-bit signed integer hash code.
676 |
677 |
678 |
679 | Returns a string that represents the value of this instance.
680 |
681 | The string representation of this instance.
682 |
683 | The string returned by this method takes the form (Item1, Item2),
684 | where Item1 and Item2 represent the values of the
685 | and fields. If either field value is ,
686 | it is represented as .
687 |
688 |
689 |
690 |
691 | Represents a 3-tuple, or triple, as a value type.
692 |
693 | The type of the tuple's first component.
694 | The type of the tuple's second component.
695 | The type of the tuple's third component.
696 |
697 |
698 |
699 | The current instance's first component.
700 |
701 |
702 |
703 |
704 | The current instance's second component.
705 |
706 |
707 |
708 |
709 | The current instance's third component.
710 |
711 |
712 |
713 |
714 | Initializes a new instance of the value type.
715 |
716 | The value of the tuple's first component.
717 | The value of the tuple's second component.
718 | The value of the tuple's third component.
719 |
720 |
721 |
722 | Returns a value that indicates whether the current instance is equal to a specified object.
723 |
724 | The object to compare with this instance.
725 | if the current instance is equal to the specified object; otherwise, .
726 |
727 | The parameter is considered to be equal to the current instance under the following conditions:
728 |
729 | - It is a value type.
730 | - Its components are of the same types as those of the current instance.
731 | - Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component.
732 |
733 |
734 |
735 |
736 |
737 | Returns a value that indicates whether the current
738 | instance is equal to a specified .
739 |
740 | The tuple to compare with this instance.
741 | if the current instance is equal to the specified tuple; otherwise, .
742 |
743 | The parameter is considered to be equal to the current instance if each of its fields
744 | are equal to that of the current instance, using the default comparer for that field's type.
745 |
746 |
747 |
748 | Compares this instance to a specified instance and returns an indication of their relative values.
749 | An instance to compare.
750 |
751 | A signed number indicating the relative values of this instance and .
752 | Returns less than zero if this instance is less than , zero if this
753 | instance is equal to , and greater than zero if this instance is greater
754 | than .
755 |
756 |
757 |
758 |
759 | Returns the hash code for the current instance.
760 |
761 | A 32-bit signed integer hash code.
762 |
763 |
764 |
765 | Returns a string that represents the value of this instance.
766 |
767 | The string representation of this instance.
768 |
769 | The string returned by this method takes the form (Item1, Item2, Item3).
770 | If any field value is , it is represented as .
771 |
772 |
773 |
774 |
775 | Represents a 4-tuple, or quadruple, as a value type.
776 |
777 | The type of the tuple's first component.
778 | The type of the tuple's second component.
779 | The type of the tuple's third component.
780 | The type of the tuple's fourth component.
781 |
782 |
783 |
784 | The current instance's first component.
785 |
786 |
787 |
788 |
789 | The current instance's second component.
790 |
791 |
792 |
793 |
794 | The current instance's third component.
795 |
796 |
797 |
798 |
799 | The current instance's fourth component.
800 |
801 |
802 |
803 |
804 | Initializes a new instance of the value type.
805 |
806 | The value of the tuple's first component.
807 | The value of the tuple's second component.
808 | The value of the tuple's third component.
809 | The value of the tuple's fourth component.
810 |
811 |
812 |
813 | Returns a value that indicates whether the current instance is equal to a specified object.
814 |
815 | The object to compare with this instance.
816 | if the current instance is equal to the specified object; otherwise, .
817 |
818 | The parameter is considered to be equal to the current instance under the following conditions:
819 |
820 | - It is a value type.
821 | - Its components are of the same types as those of the current instance.
822 | - Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component.
823 |
824 |
825 |
826 |
827 |
828 | Returns a value that indicates whether the current
829 | instance is equal to a specified .
830 |
831 | The tuple to compare with this instance.
832 | if the current instance is equal to the specified tuple; otherwise, .
833 |
834 | The parameter is considered to be equal to the current instance if each of its fields
835 | are equal to that of the current instance, using the default comparer for that field's type.
836 |
837 |
838 |
839 | Compares this instance to a specified instance and returns an indication of their relative values.
840 | An instance to compare.
841 |
842 | A signed number indicating the relative values of this instance and .
843 | Returns less than zero if this instance is less than , zero if this
844 | instance is equal to , and greater than zero if this instance is greater
845 | than .
846 |
847 |
848 |
849 |
850 | Returns the hash code for the current instance.
851 |
852 | A 32-bit signed integer hash code.
853 |
854 |
855 |
856 | Returns a string that represents the value of this instance.
857 |
858 | The string representation of this instance.
859 |
860 | The string returned by this method takes the form (Item1, Item2, Item3, Item4).
861 | If any field value is , it is represented as .
862 |
863 |
864 |
865 |
866 | Represents a 5-tuple, or quintuple, as a value type.
867 |
868 | The type of the tuple's first component.
869 | The type of the tuple's second component.
870 | The type of the tuple's third component.
871 | The type of the tuple's fourth component.
872 | The type of the tuple's fifth component.
873 |
874 |
875 |
876 | The current instance's first component.
877 |
878 |
879 |
880 |
881 | The current instance's second component.
882 |
883 |
884 |
885 |
886 | The current instance's third component.
887 |
888 |
889 |
890 |
891 | The current instance's fourth component.
892 |
893 |
894 |
895 |
896 | The current instance's fifth component.
897 |
898 |
899 |
900 |
901 | Initializes a new instance of the value type.
902 |
903 | The value of the tuple's first component.
904 | The value of the tuple's second component.
905 | The value of the tuple's third component.
906 | The value of the tuple's fourth component.
907 | The value of the tuple's fifth component.
908 |
909 |
910 |
911 | Returns a value that indicates whether the current instance is equal to a specified object.
912 |
913 | The object to compare with this instance.
914 | if the current instance is equal to the specified object; otherwise, .
915 |
916 | The parameter is considered to be equal to the current instance under the following conditions:
917 |
918 | - It is a value type.
919 | - Its components are of the same types as those of the current instance.
920 | - Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component.
921 |
922 |
923 |
924 |
925 |
926 | Returns a value that indicates whether the current
927 | instance is equal to a specified .
928 |
929 | The tuple to compare with this instance.
930 | if the current instance is equal to the specified tuple; otherwise, .
931 |
932 | The parameter is considered to be equal to the current instance if each of its fields
933 | are equal to that of the current instance, using the default comparer for that field's type.
934 |
935 |
936 |
937 | Compares this instance to a specified instance and returns an indication of their relative values.
938 | An instance to compare.
939 |
940 | A signed number indicating the relative values of this instance and .
941 | Returns less than zero if this instance is less than , zero if this
942 | instance is equal to , and greater than zero if this instance is greater
943 | than .
944 |
945 |
946 |
947 |
948 | Returns the hash code for the current instance.
949 |
950 | A 32-bit signed integer hash code.
951 |
952 |
953 |
954 | Returns a string that represents the value of this instance.
955 |
956 | The string representation of this instance.
957 |
958 | The string returned by this method takes the form (Item1, Item2, Item3, Item4, Item5).
959 | If any field value is , it is represented as .
960 |
961 |
962 |
963 |
964 | Represents a 6-tuple, or sixtuple, as a value type.
965 |
966 | The type of the tuple's first component.
967 | The type of the tuple's second component.
968 | The type of the tuple's third component.
969 | The type of the tuple's fourth component.
970 | The type of the tuple's fifth component.
971 | The type of the tuple's sixth component.
972 |
973 |
974 |
975 | The current instance's first component.
976 |
977 |
978 |
979 |
980 | The current instance's second component.
981 |
982 |
983 |
984 |
985 | The current instance's third component.
986 |
987 |
988 |
989 |
990 | The current instance's fourth component.
991 |
992 |
993 |
994 |
995 | The current instance's fifth component.
996 |
997 |
998 |
999 |
1000 | The current instance's sixth component.
1001 |
1002 |
1003 |
1004 |
1005 | Initializes a new instance of the value type.
1006 |
1007 | The value of the tuple's first component.
1008 | The value of the tuple's second component.
1009 | The value of the tuple's third component.
1010 | The value of the tuple's fourth component.
1011 | The value of the tuple's fifth component.
1012 | The value of the tuple's sixth component.
1013 |
1014 |
1015 |
1016 | Returns a value that indicates whether the current instance is equal to a specified object.
1017 |
1018 | The object to compare with this instance.
1019 | if the current instance is equal to the specified object; otherwise, .
1020 |
1021 | The parameter is considered to be equal to the current instance under the following conditions:
1022 |
1023 | - It is a value type.
1024 | - Its components are of the same types as those of the current instance.
1025 | - Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component.
1026 |
1027 |
1028 |
1029 |
1030 |
1031 | Returns a value that indicates whether the current
1032 | instance is equal to a specified .
1033 |
1034 | The tuple to compare with this instance.
1035 | if the current instance is equal to the specified tuple; otherwise, .
1036 |
1037 | The parameter is considered to be equal to the current instance if each of its fields
1038 | are equal to that of the current instance, using the default comparer for that field's type.
1039 |
1040 |
1041 |
1042 | Compares this instance to a specified instance and returns an indication of their relative values.
1043 | An instance to compare.
1044 |
1045 | A signed number indicating the relative values of this instance and .
1046 | Returns less than zero if this instance is less than , zero if this
1047 | instance is equal to , and greater than zero if this instance is greater
1048 | than .
1049 |
1050 |
1051 |
1052 |
1053 | Returns the hash code for the current instance.
1054 |
1055 | A 32-bit signed integer hash code.
1056 |
1057 |
1058 |
1059 | Returns a string that represents the value of this instance.
1060 |
1061 | The string representation of this instance.
1062 |
1063 | The string returned by this method takes the form (Item1, Item2, Item3, Item4, Item5, Item6).
1064 | If any field value is , it is represented as .
1065 |
1066 |
1067 |
1068 |
1069 | Represents a 7-tuple, or sentuple, as a value type.
1070 |
1071 | The type of the tuple's first component.
1072 | The type of the tuple's second component.
1073 | The type of the tuple's third component.
1074 | The type of the tuple's fourth component.
1075 | The type of the tuple's fifth component.
1076 | The type of the tuple's sixth component.
1077 | The type of the tuple's seventh component.
1078 |
1079 |
1080 |
1081 | The current instance's first component.
1082 |
1083 |
1084 |
1085 |
1086 | The current instance's second component.
1087 |
1088 |
1089 |
1090 |
1091 | The current instance's third component.
1092 |
1093 |
1094 |
1095 |
1096 | The current instance's fourth component.
1097 |
1098 |
1099 |
1100 |
1101 | The current instance's fifth component.
1102 |
1103 |
1104 |
1105 |
1106 | The current instance's sixth component.
1107 |
1108 |
1109 |
1110 |
1111 | The current instance's seventh component.
1112 |
1113 |
1114 |
1115 |
1116 | Initializes a new instance of the value type.
1117 |
1118 | The value of the tuple's first component.
1119 | The value of the tuple's second component.
1120 | The value of the tuple's third component.
1121 | The value of the tuple's fourth component.
1122 | The value of the tuple's fifth component.
1123 | The value of the tuple's sixth component.
1124 | The value of the tuple's seventh component.
1125 |
1126 |
1127 |
1128 | Returns a value that indicates whether the current instance is equal to a specified object.
1129 |
1130 | The object to compare with this instance.
1131 | if the current instance is equal to the specified object; otherwise, .
1132 |
1133 | The parameter is considered to be equal to the current instance under the following conditions:
1134 |
1135 | - It is a value type.
1136 | - Its components are of the same types as those of the current instance.
1137 | - Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component.
1138 |
1139 |
1140 |
1141 |
1142 |
1143 | Returns a value that indicates whether the current
1144 | instance is equal to a specified .
1145 |
1146 | The tuple to compare with this instance.
1147 | if the current instance is equal to the specified tuple; otherwise, .
1148 |
1149 | The parameter is considered to be equal to the current instance if each of its fields
1150 | are equal to that of the current instance, using the default comparer for that field's type.
1151 |
1152 |
1153 |
1154 | Compares this instance to a specified instance and returns an indication of their relative values.
1155 | An instance to compare.
1156 |
1157 | A signed number indicating the relative values of this instance and .
1158 | Returns less than zero if this instance is less than , zero if this
1159 | instance is equal to , and greater than zero if this instance is greater
1160 | than .
1161 |
1162 |
1163 |
1164 |
1165 | Returns the hash code for the current instance.
1166 |
1167 | A 32-bit signed integer hash code.
1168 |
1169 |
1170 |
1171 | Returns a string that represents the value of this instance.
1172 |
1173 | The string representation of this instance.
1174 |
1175 | The string returned by this method takes the form (Item1, Item2, Item3, Item4, Item5, Item6, Item7).
1176 | If any field value is , it is represented as .
1177 |
1178 |
1179 |
1180 |
1181 | Represents an 8-tuple, or octuple, as a value type.
1182 |
1183 | The type of the tuple's first component.
1184 | The type of the tuple's second component.
1185 | The type of the tuple's third component.
1186 | The type of the tuple's fourth component.
1187 | The type of the tuple's fifth component.
1188 | The type of the tuple's sixth component.
1189 | The type of the tuple's seventh component.
1190 | The type of the tuple's eighth component.
1191 |
1192 |
1193 |
1194 | The current instance's first component.
1195 |
1196 |
1197 |
1198 |
1199 | The current instance's second component.
1200 |
1201 |
1202 |
1203 |
1204 | The current instance's third component.
1205 |
1206 |
1207 |
1208 |
1209 | The current instance's fourth component.
1210 |
1211 |
1212 |
1213 |
1214 | The current instance's fifth component.
1215 |
1216 |
1217 |
1218 |
1219 | The current instance's sixth component.
1220 |
1221 |
1222 |
1223 |
1224 | The current instance's seventh component.
1225 |
1226 |
1227 |
1228 |
1229 | The current instance's eighth component.
1230 |
1231 |
1232 |
1233 |
1234 | Initializes a new instance of the value type.
1235 |
1236 | The value of the tuple's first component.
1237 | The value of the tuple's second component.
1238 | The value of the tuple's third component.
1239 | The value of the tuple's fourth component.
1240 | The value of the tuple's fifth component.
1241 | The value of the tuple's sixth component.
1242 | The value of the tuple's seventh component.
1243 | The value of the tuple's eight component.
1244 |
1245 |
1246 |
1247 | Returns a value that indicates whether the current instance is equal to a specified object.
1248 |
1249 | The object to compare with this instance.
1250 | if the current instance is equal to the specified object; otherwise, .
1251 |
1252 | The parameter is considered to be equal to the current instance under the following conditions:
1253 |
1254 | - It is a value type.
1255 | - Its components are of the same types as those of the current instance.
1256 | - Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component.
1257 |
1258 |
1259 |
1260 |
1261 |
1262 | Returns a value that indicates whether the current
1263 | instance is equal to a specified .
1264 |
1265 | The tuple to compare with this instance.
1266 | if the current instance is equal to the specified tuple; otherwise, .
1267 |
1268 | The parameter is considered to be equal to the current instance if each of its fields
1269 | are equal to that of the current instance, using the default comparer for that field's type.
1270 |
1271 |
1272 |
1273 | Compares this instance to a specified instance and returns an indication of their relative values.
1274 | An instance to compare.
1275 |
1276 | A signed number indicating the relative values of this instance and .
1277 | Returns less than zero if this instance is less than , zero if this
1278 | instance is equal to , and greater than zero if this instance is greater
1279 | than .
1280 |
1281 |
1282 |
1283 |
1284 | Returns the hash code for the current instance.
1285 |
1286 | A 32-bit signed integer hash code.
1287 |
1288 |
1289 |
1290 | Returns a string that represents the value of this instance.
1291 |
1292 | The string representation of this instance.
1293 |
1294 | The string returned by this method takes the form (Item1, Item2, Item3, Item4, Item5, Item6, Item7, Rest).
1295 | If any field value is , it is represented as .
1296 |
1297 |
1298 |
1299 |
1300 |
--------------------------------------------------------------------------------
/packages/System.ValueTuple.4.5.0/lib/net47/System.ValueTuple.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kade-github/SparrowAtlasResizer/9c61ba7f381a40116a61cb5c73fac94ad68554e9/packages/System.ValueTuple.4.5.0/lib/net47/System.ValueTuple.dll
--------------------------------------------------------------------------------
/packages/System.ValueTuple.4.5.0/lib/net47/System.ValueTuple.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | System.ValueTuple
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/packages/System.ValueTuple.4.5.0/lib/netcoreapp2.0/_._:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kade-github/SparrowAtlasResizer/9c61ba7f381a40116a61cb5c73fac94ad68554e9/packages/System.ValueTuple.4.5.0/lib/netcoreapp2.0/_._
--------------------------------------------------------------------------------
/packages/System.ValueTuple.4.5.0/lib/netstandard1.0/System.ValueTuple.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kade-github/SparrowAtlasResizer/9c61ba7f381a40116a61cb5c73fac94ad68554e9/packages/System.ValueTuple.4.5.0/lib/netstandard1.0/System.ValueTuple.dll
--------------------------------------------------------------------------------
/packages/System.ValueTuple.4.5.0/lib/netstandard1.0/System.ValueTuple.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | System.ValueTuple
5 |
6 |
7 |
8 |
9 | Indicates that the use of on a member is meant to be treated as a tuple with element names.
10 |
11 |
12 |
13 |
14 | Initializes a new instance of the class.
16 |
17 |
18 | Specifies, in a pre-order depth-first traversal of a type's
19 | construction, which occurrences are
20 | meant to carry element names.
21 |
22 |
23 | This constructor is meant to be used on types that contain an
24 | instantiation of that contains
25 | element names. For instance, if C is a generic type with
26 | two type parameters, then a use of the constructed type C{, might be intended to
29 | treat the first type argument as a tuple with element names and the
30 | second as a tuple without element names. In which case, the
31 | appropriate attribute specification should use a
32 | transformNames value of { "name1", "name2", null, null,
33 | null }.
34 |
35 |
36 |
37 |
38 | Specifies, in a pre-order depth-first traversal of a type's
39 | construction, which elements are
40 | meant to carry element names.
41 |
42 |
43 |
44 |
45 | Provides extension methods for instances to interop with C# tuples features (deconstruction syntax, converting from and to ).
46 |
47 |
48 |
49 |
50 | Deconstruct a properly nested with 1 elements.
51 |
52 |
53 |
54 |
55 | Deconstruct a properly nested with 2 elements.
56 |
57 |
58 |
59 |
60 | Deconstruct a properly nested with 3 elements.
61 |
62 |
63 |
64 |
65 | Deconstruct a properly nested with 4 elements.
66 |
67 |
68 |
69 |
70 | Deconstruct a properly nested with 5 elements.
71 |
72 |
73 |
74 |
75 | Deconstruct a properly nested with 6 elements.
76 |
77 |
78 |
79 |
80 | Deconstruct a properly nested with 7 elements.
81 |
82 |
83 |
84 |
85 | Deconstruct a properly nested with 8 elements.
86 |
87 |
88 |
89 |
90 | Deconstruct a properly nested with 9 elements.
91 |
92 |
93 |
94 |
95 | Deconstruct a properly nested with 10 elements.
96 |
97 |
98 |
99 |
100 | Deconstruct a properly nested with 11 elements.
101 |
102 |
103 |
104 |
105 | Deconstruct a properly nested with 12 elements.
106 |
107 |
108 |
109 |
110 | Deconstruct a properly nested with 13 elements.
111 |
112 |
113 |
114 |
115 | Deconstruct a properly nested with 14 elements.
116 |
117 |
118 |
119 |
120 | Deconstruct a properly nested with 15 elements.
121 |
122 |
123 |
124 |
125 | Deconstruct a properly nested with 16 elements.
126 |
127 |
128 |
129 |
130 | Deconstruct a properly nested with 17 elements.
131 |
132 |
133 |
134 |
135 | Deconstruct a properly nested with 18 elements.
136 |
137 |
138 |
139 |
140 | Deconstruct a properly nested with 19 elements.
141 |
142 |
143 |
144 |
145 | Deconstruct a properly nested with 20 elements.
146 |
147 |
148 |
149 |
150 | Deconstruct a properly nested with 21 elements.
151 |
152 |
153 |
154 |
155 | Make a properly nested from a properly nested with 1 element.
156 |
157 |
158 |
159 |
160 | Make a properly nested from a properly nested with 2 elements.
161 |
162 |
163 |
164 |
165 | Make a properly nested from a properly nested with 3 elements.
166 |
167 |
168 |
169 |
170 | Make a properly nested from a properly nested with 4 elements.
171 |
172 |
173 |
174 |
175 | Make a properly nested from a properly nested with 5 elements.
176 |
177 |
178 |
179 |
180 | Make a properly nested from a properly nested with 6 elements.
181 |
182 |
183 |
184 |
185 | Make a properly nested from a properly nested with 7 elements.
186 |
187 |
188 |
189 |
190 | Make a properly nested from a properly nested with 8 elements.
191 |
192 |
193 |
194 |
195 | Make a properly nested from a properly nested with 9 elements.
196 |
197 |
198 |
199 |
200 | Make a properly nested from a properly nested with 10 elements.
201 |
202 |
203 |
204 |
205 | Make a properly nested from a properly nested with 11 elements.
206 |
207 |
208 |
209 |
210 | Make a properly nested from a properly nested with 12 elements.
211 |
212 |
213 |
214 |
215 | Make a properly nested from a properly nested with 13 elements.
216 |
217 |
218 |
219 |
220 | Make a properly nested from a properly nested with 14 elements.
221 |
222 |
223 |
224 |
225 | Make a properly nested from a properly nested with 15 elements.
226 |
227 |
228 |
229 |
230 | Make a properly nested from a properly nested with 16 elements.
231 |
232 |
233 |
234 |
235 | Make a properly nested from a properly nested with 17 elements.
236 |
237 |
238 |
239 |
240 | Make a properly nested from a properly nested with 18 elements.
241 |
242 |
243 |
244 |
245 | Make a properly nested from a properly nested with 19 elements.
246 |
247 |
248 |
249 |
250 | Make a properly nested from a properly nested with 20 elements.
251 |
252 |
253 |
254 |
255 | Make a properly nested from a properly nested with 21 elements.
256 |
257 |
258 |
259 |
260 | Make a properly nested from a properly nested with 1 element.
261 |
262 |
263 |
264 |
265 | Make a properly nested from a properly nested with 2 elements.
266 |
267 |
268 |
269 |
270 | Make a properly nested from a properly nested with 3 elements.
271 |
272 |
273 |
274 |
275 | Make a properly nested from a properly nested with 4 elements.
276 |
277 |
278 |
279 |
280 | Make a properly nested from a properly nested with 5 elements.
281 |
282 |
283 |
284 |
285 | Make a properly nested from a properly nested with 6 elements.
286 |
287 |
288 |
289 |
290 | Make a properly nested from a properly nested with 7 elements.
291 |
292 |
293 |
294 |
295 | Make a properly nested from a properly nested with 8 elements.
296 |
297 |
298 |
299 |
300 | Make a properly nested from a properly nested with 9 elements.
301 |
302 |
303 |
304 |
305 | Make a properly nested from a properly nested with 10 elements.
306 |
307 |
308 |
309 |
310 | Make a properly nested from a properly nested with 11 elements.
311 |
312 |
313 |
314 |
315 | Make a properly nested from a properly nested with 12 elements.
316 |
317 |
318 |
319 |
320 | Make a properly nested from a properly nested with 13 elements.
321 |
322 |
323 |
324 |
325 | Make a properly nested from a properly nested with 14 elements.
326 |
327 |
328 |
329 |
330 | Make a properly nested from a properly nested with 15 elements.
331 |
332 |
333 |
334 |
335 | Make a properly nested from a properly nested with 16 elements.
336 |
337 |
338 |
339 |
340 | Make a properly nested from a properly nested with 17 elements.
341 |
342 |
343 |
344 |
345 | Make a properly nested from a properly nested with 18 elements.
346 |
347 |
348 |
349 |
350 | Make a properly nested from a properly nested with 19 elements.
351 |
352 |
353 |
354 |
355 | Make a properly nested from a properly nested with 20 elements.
356 |
357 |
358 |
359 |
360 | Make a properly nested from a properly nested with 21 elements.
361 |
362 |
363 |
364 |
365 | Helper so we can call some tuple methods recursively without knowing the underlying types.
366 |
367 |
368 |
369 |
370 | The ValueTuple types (from arity 0 to 8) comprise the runtime implementation that underlies tuples in C# and struct tuples in F#.
371 | Aside from created via language syntax, they are most easily created via the ValueTuple.Create factory methods.
372 | The System.ValueTuple types differ from the System.Tuple types in that:
373 | - they are structs rather than classes,
374 | - they are mutable rather than readonly, and
375 | - their members (such as Item1, Item2, etc) are fields rather than properties.
376 |
377 |
378 |
379 |
380 | Returns a value that indicates whether the current instance is equal to a specified object.
381 |
382 | The object to compare with this instance.
383 | if is a .
384 |
385 |
386 | Returns a value indicating whether this instance is equal to a specified value.
387 | An instance to compare to this instance.
388 | true if has the same value as this instance; otherwise, false.
389 |
390 |
391 | Compares this instance to a specified instance and returns an indication of their relative values.
392 | An instance to compare.
393 |
394 | A signed number indicating the relative values of this instance and .
395 | Returns less than zero if this instance is less than , zero if this
396 | instance is equal to , and greater than zero if this instance is greater
397 | than .
398 |
399 |
400 |
401 | Returns the hash code for this instance.
402 | A 32-bit signed integer hash code.
403 |
404 |
405 |
406 | Returns a string that represents the value of this instance.
407 |
408 | The string representation of this instance.
409 |
410 | The string returned by this method takes the form ().
411 |
412 |
413 |
414 | Creates a new struct 0-tuple.
415 | A 0-tuple.
416 |
417 |
418 | Creates a new struct 1-tuple, or singleton.
419 | The type of the first component of the tuple.
420 | The value of the first component of the tuple.
421 | A 1-tuple (singleton) whose value is (item1).
422 |
423 |
424 | Creates a new struct 2-tuple, or pair.
425 | The type of the first component of the tuple.
426 | The type of the second component of the tuple.
427 | The value of the first component of the tuple.
428 | The value of the second component of the tuple.
429 | A 2-tuple (pair) whose value is (item1, item2).
430 |
431 |
432 | Creates a new struct 3-tuple, or triple.
433 | The type of the first component of the tuple.
434 | The type of the second component of the tuple.
435 | The type of the third component of the tuple.
436 | The value of the first component of the tuple.
437 | The value of the second component of the tuple.
438 | The value of the third component of the tuple.
439 | A 3-tuple (triple) whose value is (item1, item2, item3).
440 |
441 |
442 | Creates a new struct 4-tuple, or quadruple.
443 | The type of the first component of the tuple.
444 | The type of the second component of the tuple.
445 | The type of the third component of the tuple.
446 | The type of the fourth component of the tuple.
447 | The value of the first component of the tuple.
448 | The value of the second component of the tuple.
449 | The value of the third component of the tuple.
450 | The value of the fourth component of the tuple.
451 | A 4-tuple (quadruple) whose value is (item1, item2, item3, item4).
452 |
453 |
454 | Creates a new struct 5-tuple, or quintuple.
455 | The type of the first component of the tuple.
456 | The type of the second component of the tuple.
457 | The type of the third component of the tuple.
458 | The type of the fourth component of the tuple.
459 | The type of the fifth component of the tuple.
460 | The value of the first component of the tuple.
461 | The value of the second component of the tuple.
462 | The value of the third component of the tuple.
463 | The value of the fourth component of the tuple.
464 | The value of the fifth component of the tuple.
465 | A 5-tuple (quintuple) whose value is (item1, item2, item3, item4, item5).
466 |
467 |
468 | Creates a new struct 6-tuple, or sextuple.
469 | The type of the first component of the tuple.
470 | The type of the second component of the tuple.
471 | The type of the third component of the tuple.
472 | The type of the fourth component of the tuple.
473 | The type of the fifth component of the tuple.
474 | The type of the sixth component of the tuple.
475 | The value of the first component of the tuple.
476 | The value of the second component of the tuple.
477 | The value of the third component of the tuple.
478 | The value of the fourth component of the tuple.
479 | The value of the fifth component of the tuple.
480 | The value of the sixth component of the tuple.
481 | A 6-tuple (sextuple) whose value is (item1, item2, item3, item4, item5, item6).
482 |
483 |
484 | Creates a new struct 7-tuple, or septuple.
485 | The type of the first component of the tuple.
486 | The type of the second component of the tuple.
487 | The type of the third component of the tuple.
488 | The type of the fourth component of the tuple.
489 | The type of the fifth component of the tuple.
490 | The type of the sixth component of the tuple.
491 | The type of the seventh component of the tuple.
492 | The value of the first component of the tuple.
493 | The value of the second component of the tuple.
494 | The value of the third component of the tuple.
495 | The value of the fourth component of the tuple.
496 | The value of the fifth component of the tuple.
497 | The value of the sixth component of the tuple.
498 | The value of the seventh component of the tuple.
499 | A 7-tuple (septuple) whose value is (item1, item2, item3, item4, item5, item6, item7).
500 |
501 |
502 | Creates a new struct 8-tuple, or octuple.
503 | The type of the first component of the tuple.
504 | The type of the second component of the tuple.
505 | The type of the third component of the tuple.
506 | The type of the fourth component of the tuple.
507 | The type of the fifth component of the tuple.
508 | The type of the sixth component of the tuple.
509 | The type of the seventh component of the tuple.
510 | The type of the eighth component of the tuple.
511 | The value of the first component of the tuple.
512 | The value of the second component of the tuple.
513 | The value of the third component of the tuple.
514 | The value of the fourth component of the tuple.
515 | The value of the fifth component of the tuple.
516 | The value of the sixth component of the tuple.
517 | The value of the seventh component of the tuple.
518 | The value of the eighth component of the tuple.
519 | An 8-tuple (octuple) whose value is (item1, item2, item3, item4, item5, item6, item7, item8).
520 |
521 |
522 | Represents a 1-tuple, or singleton, as a value type.
523 | The type of the tuple's only component.
524 |
525 |
526 |
527 | The current instance's first component.
528 |
529 |
530 |
531 |
532 | Initializes a new instance of the value type.
533 |
534 | The value of the tuple's first component.
535 |
536 |
537 |
538 | Returns a value that indicates whether the current instance is equal to a specified object.
539 |
540 | The object to compare with this instance.
541 | if the current instance is equal to the specified object; otherwise, .
542 |
543 | The parameter is considered to be equal to the current instance under the following conditions:
544 |
545 | - It is a value type.
546 | - Its components are of the same types as those of the current instance.
547 | - Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component.
548 |
549 |
550 |
551 |
552 |
553 | Returns a value that indicates whether the current
554 | instance is equal to a specified .
555 |
556 | The tuple to compare with this instance.
557 | if the current instance is equal to the specified tuple; otherwise, .
558 |
559 | The parameter is considered to be equal to the current instance if each of its field
560 | is equal to that of the current instance, using the default comparer for that field's type.
561 |
562 |
563 |
564 | Compares this instance to a specified instance and returns an indication of their relative values.
565 | An instance to compare.
566 |
567 | A signed number indicating the relative values of this instance and .
568 | Returns less than zero if this instance is less than , zero if this
569 | instance is equal to , and greater than zero if this instance is greater
570 | than .
571 |
572 |
573 |
574 |
575 | Returns the hash code for the current instance.
576 |
577 | A 32-bit signed integer hash code.
578 |
579 |
580 |
581 | Returns a string that represents the value of this instance.
582 |
583 | The string representation of this instance.
584 |
585 | The string returned by this method takes the form (Item1),
586 | where Item1 represents the value of . If the field is ,
587 | it is represented as .
588 |
589 |
590 |
591 |
592 | Represents a 2-tuple, or pair, as a value type.
593 |
594 | The type of the tuple's first component.
595 | The type of the tuple's second component.
596 |
597 |
598 |
599 | The current instance's first component.
600 |
601 |
602 |
603 |
604 | The current instance's second component.
605 |
606 |
607 |
608 |
609 | Initializes a new instance of the value type.
610 |
611 | The value of the tuple's first component.
612 | The value of the tuple's second component.
613 |
614 |
615 |
616 | Returns a value that indicates whether the current instance is equal to a specified object.
617 |
618 | The object to compare with this instance.
619 | if the current instance is equal to the specified object; otherwise, .
620 |
621 |
622 | The parameter is considered to be equal to the current instance under the following conditions:
623 |
624 | - It is a value type.
625 | - Its components are of the same types as those of the current instance.
626 | - Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component.
627 |
628 |
629 |
630 |
631 |
632 | Returns a value that indicates whether the current instance is equal to a specified .
633 |
634 | The tuple to compare with this instance.
635 | if the current instance is equal to the specified tuple; otherwise, .
636 |
637 | The parameter is considered to be equal to the current instance if each of its fields
638 | are equal to that of the current instance, using the default comparer for that field's type.
639 |
640 |
641 |
642 |
643 | Returns a value that indicates whether the current instance is equal to a specified object based on a specified comparison method.
644 |
645 | The object to compare with this instance.
646 | An object that defines the method to use to evaluate whether the two objects are equal.
647 | if the current instance is equal to the specified object; otherwise, .
648 |
649 |
650 | This member is an explicit interface member implementation. It can be used only when the
651 | instance is cast to an interface.
652 |
653 | The implementation is called only if other is not ,
654 | and if it can be successfully cast (in C#) or converted (in Visual Basic) to a
655 | whose components are of the same types as those of the current instance. The IStructuralEquatable.Equals(Object, IEqualityComparer) method
656 | first passes the values of the objects to be compared to the
657 | implementation. If this method call returns , the method is
658 | called again and passed the values of the two instances.
659 |
660 |
661 |
662 | Compares this instance to a specified instance and returns an indication of their relative values.
663 | An instance to compare.
664 |
665 | A signed number indicating the relative values of this instance and .
666 | Returns less than zero if this instance is less than , zero if this
667 | instance is equal to , and greater than zero if this instance is greater
668 | than .
669 |
670 |
671 |
672 |
673 | Returns the hash code for the current instance.
674 |
675 | A 32-bit signed integer hash code.
676 |
677 |
678 |
679 | Returns a string that represents the value of this instance.
680 |
681 | The string representation of this instance.
682 |
683 | The string returned by this method takes the form (Item1, Item2),
684 | where Item1 and Item2 represent the values of the
685 | and fields. If either field value is ,
686 | it is represented as .
687 |
688 |
689 |
690 |
691 | Represents a 3-tuple, or triple, as a value type.
692 |
693 | The type of the tuple's first component.
694 | The type of the tuple's second component.
695 | The type of the tuple's third component.
696 |
697 |
698 |
699 | The current instance's first component.
700 |
701 |
702 |
703 |
704 | The current instance's second component.
705 |
706 |
707 |
708 |
709 | The current instance's third component.
710 |
711 |
712 |
713 |
714 | Initializes a new instance of the value type.
715 |
716 | The value of the tuple's first component.
717 | The value of the tuple's second component.
718 | The value of the tuple's third component.
719 |
720 |
721 |
722 | Returns a value that indicates whether the current instance is equal to a specified object.
723 |
724 | The object to compare with this instance.
725 | if the current instance is equal to the specified object; otherwise, .
726 |
727 | The parameter is considered to be equal to the current instance under the following conditions:
728 |
729 | - It is a value type.
730 | - Its components are of the same types as those of the current instance.
731 | - Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component.
732 |
733 |
734 |
735 |
736 |
737 | Returns a value that indicates whether the current
738 | instance is equal to a specified .
739 |
740 | The tuple to compare with this instance.
741 | if the current instance is equal to the specified tuple; otherwise, .
742 |
743 | The parameter is considered to be equal to the current instance if each of its fields
744 | are equal to that of the current instance, using the default comparer for that field's type.
745 |
746 |
747 |
748 | Compares this instance to a specified instance and returns an indication of their relative values.
749 | An instance to compare.
750 |
751 | A signed number indicating the relative values of this instance and .
752 | Returns less than zero if this instance is less than , zero if this
753 | instance is equal to , and greater than zero if this instance is greater
754 | than .
755 |
756 |
757 |
758 |
759 | Returns the hash code for the current instance.
760 |
761 | A 32-bit signed integer hash code.
762 |
763 |
764 |
765 | Returns a string that represents the value of this instance.
766 |
767 | The string representation of this instance.
768 |
769 | The string returned by this method takes the form (Item1, Item2, Item3).
770 | If any field value is , it is represented as .
771 |
772 |
773 |
774 |
775 | Represents a 4-tuple, or quadruple, as a value type.
776 |
777 | The type of the tuple's first component.
778 | The type of the tuple's second component.
779 | The type of the tuple's third component.
780 | The type of the tuple's fourth component.
781 |
782 |
783 |
784 | The current instance's first component.
785 |
786 |
787 |
788 |
789 | The current instance's second component.
790 |
791 |
792 |
793 |
794 | The current instance's third component.
795 |
796 |
797 |
798 |
799 | The current instance's fourth component.
800 |
801 |
802 |
803 |
804 | Initializes a new instance of the value type.
805 |
806 | The value of the tuple's first component.
807 | The value of the tuple's second component.
808 | The value of the tuple's third component.
809 | The value of the tuple's fourth component.
810 |
811 |
812 |
813 | Returns a value that indicates whether the current instance is equal to a specified object.
814 |
815 | The object to compare with this instance.
816 | if the current instance is equal to the specified object; otherwise, .
817 |
818 | The parameter is considered to be equal to the current instance under the following conditions:
819 |
820 | - It is a value type.
821 | - Its components are of the same types as those of the current instance.
822 | - Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component.
823 |
824 |
825 |
826 |
827 |
828 | Returns a value that indicates whether the current
829 | instance is equal to a specified .
830 |
831 | The tuple to compare with this instance.
832 | if the current instance is equal to the specified tuple; otherwise, .
833 |
834 | The parameter is considered to be equal to the current instance if each of its fields
835 | are equal to that of the current instance, using the default comparer for that field's type.
836 |
837 |
838 |
839 | Compares this instance to a specified instance and returns an indication of their relative values.
840 | An instance to compare.
841 |
842 | A signed number indicating the relative values of this instance and .
843 | Returns less than zero if this instance is less than , zero if this
844 | instance is equal to , and greater than zero if this instance is greater
845 | than .
846 |
847 |
848 |
849 |
850 | Returns the hash code for the current instance.
851 |
852 | A 32-bit signed integer hash code.
853 |
854 |
855 |
856 | Returns a string that represents the value of this instance.
857 |
858 | The string representation of this instance.
859 |
860 | The string returned by this method takes the form (Item1, Item2, Item3, Item4).
861 | If any field value is , it is represented as .
862 |
863 |
864 |
865 |
866 | Represents a 5-tuple, or quintuple, as a value type.
867 |
868 | The type of the tuple's first component.
869 | The type of the tuple's second component.
870 | The type of the tuple's third component.
871 | The type of the tuple's fourth component.
872 | The type of the tuple's fifth component.
873 |
874 |
875 |
876 | The current instance's first component.
877 |
878 |
879 |
880 |
881 | The current instance's second component.
882 |
883 |
884 |
885 |
886 | The current instance's third component.
887 |
888 |
889 |
890 |
891 | The current instance's fourth component.
892 |
893 |
894 |
895 |
896 | The current instance's fifth component.
897 |
898 |
899 |
900 |
901 | Initializes a new instance of the value type.
902 |
903 | The value of the tuple's first component.
904 | The value of the tuple's second component.
905 | The value of the tuple's third component.
906 | The value of the tuple's fourth component.
907 | The value of the tuple's fifth component.
908 |
909 |
910 |
911 | Returns a value that indicates whether the current instance is equal to a specified object.
912 |
913 | The object to compare with this instance.
914 | if the current instance is equal to the specified object; otherwise, .
915 |
916 | The parameter is considered to be equal to the current instance under the following conditions:
917 |
918 | - It is a value type.
919 | - Its components are of the same types as those of the current instance.
920 | - Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component.
921 |
922 |
923 |
924 |
925 |
926 | Returns a value that indicates whether the current
927 | instance is equal to a specified .
928 |
929 | The tuple to compare with this instance.
930 | if the current instance is equal to the specified tuple; otherwise, .
931 |
932 | The parameter is considered to be equal to the current instance if each of its fields
933 | are equal to that of the current instance, using the default comparer for that field's type.
934 |
935 |
936 |
937 | Compares this instance to a specified instance and returns an indication of their relative values.
938 | An instance to compare.
939 |
940 | A signed number indicating the relative values of this instance and .
941 | Returns less than zero if this instance is less than , zero if this
942 | instance is equal to , and greater than zero if this instance is greater
943 | than .
944 |
945 |
946 |
947 |
948 | Returns the hash code for the current instance.
949 |
950 | A 32-bit signed integer hash code.
951 |
952 |
953 |
954 | Returns a string that represents the value of this instance.
955 |
956 | The string representation of this instance.
957 |
958 | The string returned by this method takes the form (Item1, Item2, Item3, Item4, Item5).
959 | If any field value is , it is represented as .
960 |
961 |
962 |
963 |
964 | Represents a 6-tuple, or sixtuple, as a value type.
965 |
966 | The type of the tuple's first component.
967 | The type of the tuple's second component.
968 | The type of the tuple's third component.
969 | The type of the tuple's fourth component.
970 | The type of the tuple's fifth component.
971 | The type of the tuple's sixth component.
972 |
973 |
974 |
975 | The current instance's first component.
976 |
977 |
978 |
979 |
980 | The current instance's second component.
981 |
982 |
983 |
984 |
985 | The current instance's third component.
986 |
987 |
988 |
989 |
990 | The current instance's fourth component.
991 |
992 |
993 |
994 |
995 | The current instance's fifth component.
996 |
997 |
998 |
999 |
1000 | The current instance's sixth component.
1001 |
1002 |
1003 |
1004 |
1005 | Initializes a new instance of the value type.
1006 |
1007 | The value of the tuple's first component.
1008 | The value of the tuple's second component.
1009 | The value of the tuple's third component.
1010 | The value of the tuple's fourth component.
1011 | The value of the tuple's fifth component.
1012 | The value of the tuple's sixth component.
1013 |
1014 |
1015 |
1016 | Returns a value that indicates whether the current instance is equal to a specified object.
1017 |
1018 | The object to compare with this instance.
1019 | if the current instance is equal to the specified object; otherwise, .
1020 |
1021 | The parameter is considered to be equal to the current instance under the following conditions:
1022 |
1023 | - It is a value type.
1024 | - Its components are of the same types as those of the current instance.
1025 | - Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component.
1026 |
1027 |
1028 |
1029 |
1030 |
1031 | Returns a value that indicates whether the current
1032 | instance is equal to a specified .
1033 |
1034 | The tuple to compare with this instance.
1035 | if the current instance is equal to the specified tuple; otherwise, .
1036 |
1037 | The parameter is considered to be equal to the current instance if each of its fields
1038 | are equal to that of the current instance, using the default comparer for that field's type.
1039 |
1040 |
1041 |
1042 | Compares this instance to a specified instance and returns an indication of their relative values.
1043 | An instance to compare.
1044 |
1045 | A signed number indicating the relative values of this instance and .
1046 | Returns less than zero if this instance is less than , zero if this
1047 | instance is equal to , and greater than zero if this instance is greater
1048 | than .
1049 |
1050 |
1051 |
1052 |
1053 | Returns the hash code for the current instance.
1054 |
1055 | A 32-bit signed integer hash code.
1056 |
1057 |
1058 |
1059 | Returns a string that represents the value of this instance.
1060 |
1061 | The string representation of this instance.
1062 |
1063 | The string returned by this method takes the form (Item1, Item2, Item3, Item4, Item5, Item6).
1064 | If any field value is , it is represented as .
1065 |
1066 |
1067 |
1068 |
1069 | Represents a 7-tuple, or sentuple, as a value type.
1070 |
1071 | The type of the tuple's first component.
1072 | The type of the tuple's second component.
1073 | The type of the tuple's third component.
1074 | The type of the tuple's fourth component.
1075 | The type of the tuple's fifth component.
1076 | The type of the tuple's sixth component.
1077 | The type of the tuple's seventh component.
1078 |
1079 |
1080 |
1081 | The current instance's first component.
1082 |
1083 |
1084 |
1085 |
1086 | The current instance's second component.
1087 |
1088 |
1089 |
1090 |
1091 | The current instance's third component.
1092 |
1093 |
1094 |
1095 |
1096 | The current instance's fourth component.
1097 |
1098 |
1099 |
1100 |
1101 | The current instance's fifth component.
1102 |
1103 |
1104 |
1105 |
1106 | The current instance's sixth component.
1107 |
1108 |
1109 |
1110 |
1111 | The current instance's seventh component.
1112 |
1113 |
1114 |
1115 |
1116 | Initializes a new instance of the value type.
1117 |
1118 | The value of the tuple's first component.
1119 | The value of the tuple's second component.
1120 | The value of the tuple's third component.
1121 | The value of the tuple's fourth component.
1122 | The value of the tuple's fifth component.
1123 | The value of the tuple's sixth component.
1124 | The value of the tuple's seventh component.
1125 |
1126 |
1127 |
1128 | Returns a value that indicates whether the current instance is equal to a specified object.
1129 |
1130 | The object to compare with this instance.
1131 | if the current instance is equal to the specified object; otherwise, .
1132 |
1133 | The parameter is considered to be equal to the current instance under the following conditions:
1134 |
1135 | - It is a value type.
1136 | - Its components are of the same types as those of the current instance.
1137 | - Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component.
1138 |
1139 |
1140 |
1141 |
1142 |
1143 | Returns a value that indicates whether the current
1144 | instance is equal to a specified .
1145 |
1146 | The tuple to compare with this instance.
1147 | if the current instance is equal to the specified tuple; otherwise, .
1148 |
1149 | The parameter is considered to be equal to the current instance if each of its fields
1150 | are equal to that of the current instance, using the default comparer for that field's type.
1151 |
1152 |
1153 |
1154 | Compares this instance to a specified instance and returns an indication of their relative values.
1155 | An instance to compare.
1156 |
1157 | A signed number indicating the relative values of this instance and .
1158 | Returns less than zero if this instance is less than , zero if this
1159 | instance is equal to , and greater than zero if this instance is greater
1160 | than .
1161 |
1162 |
1163 |
1164 |
1165 | Returns the hash code for the current instance.
1166 |
1167 | A 32-bit signed integer hash code.
1168 |
1169 |
1170 |
1171 | Returns a string that represents the value of this instance.
1172 |
1173 | The string representation of this instance.
1174 |
1175 | The string returned by this method takes the form (Item1, Item2, Item3, Item4, Item5, Item6, Item7).
1176 | If any field value is , it is represented as .
1177 |
1178 |
1179 |
1180 |
1181 | Represents an 8-tuple, or octuple, as a value type.
1182 |
1183 | The type of the tuple's first component.
1184 | The type of the tuple's second component.
1185 | The type of the tuple's third component.
1186 | The type of the tuple's fourth component.
1187 | The type of the tuple's fifth component.
1188 | The type of the tuple's sixth component.
1189 | The type of the tuple's seventh component.
1190 | The type of the tuple's eighth component.
1191 |
1192 |
1193 |
1194 | The current instance's first component.
1195 |
1196 |
1197 |
1198 |
1199 | The current instance's second component.
1200 |
1201 |
1202 |
1203 |
1204 | The current instance's third component.
1205 |
1206 |
1207 |
1208 |
1209 | The current instance's fourth component.
1210 |
1211 |
1212 |
1213 |
1214 | The current instance's fifth component.
1215 |
1216 |
1217 |
1218 |
1219 | The current instance's sixth component.
1220 |
1221 |
1222 |
1223 |
1224 | The current instance's seventh component.
1225 |
1226 |
1227 |
1228 |
1229 | The current instance's eighth component.
1230 |
1231 |
1232 |
1233 |
1234 | Initializes a new instance of the value type.
1235 |
1236 | The value of the tuple's first component.
1237 | The value of the tuple's second component.
1238 | The value of the tuple's third component.
1239 | The value of the tuple's fourth component.
1240 | The value of the tuple's fifth component.
1241 | The value of the tuple's sixth component.
1242 | The value of the tuple's seventh component.
1243 | The value of the tuple's eight component.
1244 |
1245 |
1246 |
1247 | Returns a value that indicates whether the current instance is equal to a specified object.
1248 |
1249 | The object to compare with this instance.
1250 | if the current instance is equal to the specified object; otherwise, .
1251 |
1252 | The parameter is considered to be equal to the current instance under the following conditions:
1253 |
1254 | - It is a value type.
1255 | - Its components are of the same types as those of the current instance.
1256 | - Its components are equal to those of the current instance. Equality is determined by the default object equality comparer for each component.
1257 |
1258 |
1259 |
1260 |
1261 |
1262 | Returns a value that indicates whether the current
1263 | instance is equal to a specified .
1264 |
1265 | The tuple to compare with this instance.
1266 | if the current instance is equal to the specified tuple; otherwise, .
1267 |
1268 | The parameter is considered to be equal to the current instance if each of its fields
1269 | are equal to that of the current instance, using the default comparer for that field's type.
1270 |
1271 |
1272 |
1273 | Compares this instance to a specified instance and returns an indication of their relative values.
1274 | An instance to compare.
1275 |
1276 | A signed number indicating the relative values of this instance and .
1277 | Returns less than zero if this instance is less than , zero if this
1278 | instance is equal to , and greater than zero if this instance is greater
1279 | than .
1280 |
1281 |
1282 |
1283 |
1284 | Returns the hash code for the current instance.
1285 |
1286 | A 32-bit signed integer hash code.
1287 |
1288 |
1289 |
1290 | Returns a string that represents the value of this instance.
1291 |
1292 | The string representation of this instance.
1293 |
1294 | The string returned by this method takes the form (Item1, Item2, Item3, Item4, Item5, Item6, Item7, Rest).
1295 | If any field value is , it is represented as .
1296 |
1297 |
1298 |
1299 |
1300 |
--------------------------------------------------------------------------------
/packages/System.ValueTuple.4.5.0/lib/netstandard2.0/_._:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kade-github/SparrowAtlasResizer/9c61ba7f381a40116a61cb5c73fac94ad68554e9/packages/System.ValueTuple.4.5.0/lib/netstandard2.0/_._
--------------------------------------------------------------------------------
/packages/System.ValueTuple.4.5.0/lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kade-github/SparrowAtlasResizer/9c61ba7f381a40116a61cb5c73fac94ad68554e9/packages/System.ValueTuple.4.5.0/lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll
--------------------------------------------------------------------------------
/packages/System.ValueTuple.4.5.0/lib/uap10.0.16299/_._:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kade-github/SparrowAtlasResizer/9c61ba7f381a40116a61cb5c73fac94ad68554e9/packages/System.ValueTuple.4.5.0/lib/uap10.0.16299/_._
--------------------------------------------------------------------------------
/packages/System.ValueTuple.4.5.0/lib/xamarinios10/_._:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kade-github/SparrowAtlasResizer/9c61ba7f381a40116a61cb5c73fac94ad68554e9/packages/System.ValueTuple.4.5.0/lib/xamarinios10/_._
--------------------------------------------------------------------------------
/packages/System.ValueTuple.4.5.0/lib/xamarinmac20/_._:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kade-github/SparrowAtlasResizer/9c61ba7f381a40116a61cb5c73fac94ad68554e9/packages/System.ValueTuple.4.5.0/lib/xamarinmac20/_._
--------------------------------------------------------------------------------
/packages/System.ValueTuple.4.5.0/lib/xamarintvos10/_._:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kade-github/SparrowAtlasResizer/9c61ba7f381a40116a61cb5c73fac94ad68554e9/packages/System.ValueTuple.4.5.0/lib/xamarintvos10/_._
--------------------------------------------------------------------------------
/packages/System.ValueTuple.4.5.0/lib/xamarinwatchos10/_._:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kade-github/SparrowAtlasResizer/9c61ba7f381a40116a61cb5c73fac94ad68554e9/packages/System.ValueTuple.4.5.0/lib/xamarinwatchos10/_._
--------------------------------------------------------------------------------
/packages/System.ValueTuple.4.5.0/ref/MonoAndroid10/_._:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kade-github/SparrowAtlasResizer/9c61ba7f381a40116a61cb5c73fac94ad68554e9/packages/System.ValueTuple.4.5.0/ref/MonoAndroid10/_._
--------------------------------------------------------------------------------
/packages/System.ValueTuple.4.5.0/ref/MonoTouch10/_._:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kade-github/SparrowAtlasResizer/9c61ba7f381a40116a61cb5c73fac94ad68554e9/packages/System.ValueTuple.4.5.0/ref/MonoTouch10/_._
--------------------------------------------------------------------------------
/packages/System.ValueTuple.4.5.0/ref/net461/System.ValueTuple.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kade-github/SparrowAtlasResizer/9c61ba7f381a40116a61cb5c73fac94ad68554e9/packages/System.ValueTuple.4.5.0/ref/net461/System.ValueTuple.dll
--------------------------------------------------------------------------------
/packages/System.ValueTuple.4.5.0/ref/net47/System.ValueTuple.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kade-github/SparrowAtlasResizer/9c61ba7f381a40116a61cb5c73fac94ad68554e9/packages/System.ValueTuple.4.5.0/ref/net47/System.ValueTuple.dll
--------------------------------------------------------------------------------
/packages/System.ValueTuple.4.5.0/ref/netcoreapp2.0/_._:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kade-github/SparrowAtlasResizer/9c61ba7f381a40116a61cb5c73fac94ad68554e9/packages/System.ValueTuple.4.5.0/ref/netcoreapp2.0/_._
--------------------------------------------------------------------------------
/packages/System.ValueTuple.4.5.0/ref/netstandard2.0/_._:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kade-github/SparrowAtlasResizer/9c61ba7f381a40116a61cb5c73fac94ad68554e9/packages/System.ValueTuple.4.5.0/ref/netstandard2.0/_._
--------------------------------------------------------------------------------
/packages/System.ValueTuple.4.5.0/ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kade-github/SparrowAtlasResizer/9c61ba7f381a40116a61cb5c73fac94ad68554e9/packages/System.ValueTuple.4.5.0/ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll
--------------------------------------------------------------------------------
/packages/System.ValueTuple.4.5.0/ref/uap10.0.16299/_._:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kade-github/SparrowAtlasResizer/9c61ba7f381a40116a61cb5c73fac94ad68554e9/packages/System.ValueTuple.4.5.0/ref/uap10.0.16299/_._
--------------------------------------------------------------------------------
/packages/System.ValueTuple.4.5.0/ref/xamarinios10/_._:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kade-github/SparrowAtlasResizer/9c61ba7f381a40116a61cb5c73fac94ad68554e9/packages/System.ValueTuple.4.5.0/ref/xamarinios10/_._
--------------------------------------------------------------------------------
/packages/System.ValueTuple.4.5.0/ref/xamarinmac20/_._:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kade-github/SparrowAtlasResizer/9c61ba7f381a40116a61cb5c73fac94ad68554e9/packages/System.ValueTuple.4.5.0/ref/xamarinmac20/_._
--------------------------------------------------------------------------------
/packages/System.ValueTuple.4.5.0/ref/xamarintvos10/_._:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kade-github/SparrowAtlasResizer/9c61ba7f381a40116a61cb5c73fac94ad68554e9/packages/System.ValueTuple.4.5.0/ref/xamarintvos10/_._
--------------------------------------------------------------------------------
/packages/System.ValueTuple.4.5.0/ref/xamarinwatchos10/_._:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kade-github/SparrowAtlasResizer/9c61ba7f381a40116a61cb5c73fac94ad68554e9/packages/System.ValueTuple.4.5.0/ref/xamarinwatchos10/_._
--------------------------------------------------------------------------------
/packages/System.ValueTuple.4.5.0/useSharedDesignerContext.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Kade-github/SparrowAtlasResizer/9c61ba7f381a40116a61cb5c73fac94ad68554e9/packages/System.ValueTuple.4.5.0/useSharedDesignerContext.txt
--------------------------------------------------------------------------------
/packages/System.ValueTuple.4.5.0/version.txt:
--------------------------------------------------------------------------------
1 | 30ab651fcb4354552bd4891619a0bdd81e0ebdbf
2 |
--------------------------------------------------------------------------------