RSCG – dunet
RSCG – dunet
name | dunet |
nuget | https://www.nuget.org/packages/dunet/ |
link | https://github.com/domn1995/dunet |
author | Domn Werner |
Add union types to C# – similar with F#/TS discriminated unions
Check his examples- awesome
This is how you can use dunet .
The code that you start with is
01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 | < Project Sdk = "Microsoft.NET.Sdk" > < PropertyGroup > < OutputType >Exe</ OutputType > < TargetFramework >net7.0</ TargetFramework > < ImplicitUsings >enable</ ImplicitUsings > < Nullable >enable</ Nullable > </ PropertyGroup > < ItemGroup > < PackageReference Include = "Dunet" Version = "1.8.0" > < PrivateAssets >all</ PrivateAssets > < IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</ IncludeAssets > </ PackageReference > </ ItemGroup > < PropertyGroup > < EmitCompilerGeneratedFiles >true</ EmitCompilerGeneratedFiles > < CompilerGeneratedFilesOutputPath >$(BaseIntermediateOutputPath)\GX</ CompilerGeneratedFilesOutputPath > </ PropertyGroup > </ Project > |
The code that you will use is
01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | // See https://github.com/domn1995/dunet for more examples using duneDemo; Console.WriteLine(WhatIsTheString.FromString( "1" )); Console.WriteLine(WhatIsTheString.FromString( "Andrei" )); Console.WriteLine(WhatIsTheString.FromString( "1970-04-16" )); Console.WriteLine( "Enter something - 1, 1970-04-16 or Andrei !" ); var readLine = Console.ReadLine(); var opt= WhatIsTheString.FromString(readLine); Console.WriteLine(opt); //if if it long opt.MatchIsLong( l => Console.WriteLine( "is long " + l.value), () => Console.WriteLine( "is not long" ) ) ; //C# switch var x=opt switch { WhatIsTheString.IsLong l => "is long " +l.value, WhatIsTheString.IsDate d=> "is date " + d.value, WhatIsTheString.IsString s=> "is string " + s.value, WhatIsTheString.IsNullWhiteSpace w=> "no data" , _ => throw new NotImplementedException() }; Console.WriteLine(x); |
01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | using Dunet; namespace duneDemo; [Union] partial record WhatIsTheString { partial record IsString( string value); partial record IsLong( long value); partial record IsDate(DateTime value); partial record IsNullWhiteSpace(); public static WhatIsTheString FromString( string ? value) { if ( string .IsNullOrWhiteSpace(value)) return new IsNullWhiteSpace(); if ( long .TryParse(value, out var longValue)) { return new IsLong(longValue); } if (DateTime.TryParse(value, out var dateTimeValue)) { return new IsDate(dateTimeValue); } return new IsString(value); } } |
The code that is generated is
1 2 3 4 5 6 7 8 9 | using System; namespace Dunet; /// <summary> /// Enables dunet union source generation for the decorated partial record. /// </summary> [AttributeUsage(AttributeTargets.Class, Inherited = false , AllowMultiple = false )] internal sealed class UnionAttribute : Attribute {} |
001 002 003 004 005 006 007 008 009 010 011 012 013 014 015 016 017 018 019 020 021 022 023 024 025 026 027 028 029 030 031 032 033 034 035 036 037 038 039 040 041 042 043 044 045 046 047 048 049 050 051 052 053 054 055 056 057 058 059 060 061 062 063 064 065 066 067 068 069 070 071 072 073 074 075 076 077 078 079 080 081 082 083 084 085 086 087 088 089 090 091 092 093 094 095 096 097 098 099 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 | #pragma warning disable 1591 namespace duneDemo; abstract partial record WhatIsTheString { private WhatIsTheString() {} public abstract TMatchOutput Match<TMatchOutput>( System.Func<IsString, TMatchOutput> @isString, System.Func<IsLong, TMatchOutput> @isLong, System.Func<IsDate, TMatchOutput> @isDate, System.Func<IsNullWhiteSpace, TMatchOutput> @isNullWhiteSpace ); public abstract void Match( System.Action<IsString> @isString, System.Action<IsLong> @isLong, System.Action<IsDate> @isDate, System.Action<IsNullWhiteSpace> @isNullWhiteSpace ); public abstract TMatchOutput Match<TState, TMatchOutput>( TState state, System.Func<TState, IsString, TMatchOutput> @isString, System.Func<TState, IsLong, TMatchOutput> @isLong, System.Func<TState, IsDate, TMatchOutput> @isDate, System.Func<TState, IsNullWhiteSpace, TMatchOutput> @isNullWhiteSpace ); public abstract void Match<TState>( TState state, System.Action<TState, IsString> @isString, System.Action<TState, IsLong> @isLong, System.Action<TState, IsDate> @isDate, System.Action<TState, IsNullWhiteSpace> @isNullWhiteSpace ); public abstract TMatchOutput MatchIsString<TMatchOutput>( System.Func<IsString, TMatchOutput> @isString, System.Func<TMatchOutput> @ else ); public abstract TMatchOutput MatchIsLong<TMatchOutput>( System.Func<IsLong, TMatchOutput> @isLong, System.Func<TMatchOutput> @ else ); public abstract TMatchOutput MatchIsDate<TMatchOutput>( System.Func<IsDate, TMatchOutput> @isDate, System.Func<TMatchOutput> @ else ); public abstract TMatchOutput MatchIsNullWhiteSpace<TMatchOutput>( System.Func<IsNullWhiteSpace, TMatchOutput> @isNullWhiteSpace, System.Func<TMatchOutput> @ else ); public abstract void MatchIsString( System.Action<IsString> @isString, System.Action @ else ); public abstract void MatchIsLong( System.Action<IsLong> @isLong, System.Action @ else ); public abstract void MatchIsDate( System.Action<IsDate> @isDate, System.Action @ else ); public abstract void MatchIsNullWhiteSpace( System.Action<IsNullWhiteSpace> @isNullWhiteSpace, System.Action @ else ); public abstract TMatchOutput MatchIsString<TState, TMatchOutput>( TState state, System.Func<TState, IsString, TMatchOutput> @isString, System.Func<TState, TMatchOutput> @ else ); public abstract TMatchOutput MatchIsLong<TState, TMatchOutput>( TState state, System.Func<TState, IsLong, TMatchOutput> @isLong, System.Func<TState, TMatchOutput> @ else ); public abstract TMatchOutput MatchIsDate<TState, TMatchOutput>( TState state, System.Func<TState, IsDate, TMatchOutput> @isDate, System.Func<TState, TMatchOutput> @ else ); public abstract TMatchOutput MatchIsNullWhiteSpace<TState, TMatchOutput>( TState state, System.Func<TState, IsNullWhiteSpace, TMatchOutput> @isNullWhiteSpace, System.Func<TState, TMatchOutput> @ else ); public abstract void MatchIsString<TState>( TState state, System.Action<TState, IsString> @isString, System.Action<TState> @ else ); public abstract void MatchIsLong<TState>( TState state, System.Action<TState, IsLong> @isLong, System.Action<TState> @ else ); public abstract void MatchIsDate<TState>( TState state, System.Action<TState, IsDate> @isDate, System.Action<TState> @ else ); public abstract void MatchIsNullWhiteSpace<TState>( TState state, System.Action<TState, IsNullWhiteSpace> @isNullWhiteSpace, System.Action<TState> @ else ); public sealed partial record IsString : WhatIsTheString { public override TMatchOutput Match<TMatchOutput>( System.Func<IsString, TMatchOutput> @isString, System.Func<IsLong, TMatchOutput> @isLong, System.Func<IsDate, TMatchOutput> @isDate, System.Func<IsNullWhiteSpace, TMatchOutput> @isNullWhiteSpace ) => @isString( this ); public override void Match( System.Action<IsString> @isString, System.Action<IsLong> @isLong, System.Action<IsDate> @isDate, System.Action<IsNullWhiteSpace> @isNullWhiteSpace ) => @isString( this ); public override TMatchOutput Match<TState, TMatchOutput>( TState state, System.Func<TState, IsString, TMatchOutput> @isString, System.Func<TState, IsLong, TMatchOutput> @isLong, System.Func<TState, IsDate, TMatchOutput> @isDate, System.Func<TState, IsNullWhiteSpace, TMatchOutput> @isNullWhiteSpace ) => @isString(state, this ); public override void Match<TState>( TState state, System.Action<TState, IsString> @isString, System.Action<TState, IsLong> @isLong, System.Action<TState, IsDate> @isDate, System.Action<TState, IsNullWhiteSpace> @isNullWhiteSpace ) => @isString(state, this ); public override TMatchOutput MatchIsString<TMatchOutput>( System.Func<IsString, TMatchOutput> @isString, System.Func<TMatchOutput> @ else ) => @isString( this ); public override TMatchOutput MatchIsLong<TMatchOutput>( System.Func<IsLong, TMatchOutput> @isLong, System.Func<TMatchOutput> @ else ) => @ else (); public override TMatchOutput MatchIsDate<TMatchOutput>( System.Func<IsDate, TMatchOutput> @isDate, System.Func<TMatchOutput> @ else ) => @ else (); public override TMatchOutput MatchIsNullWhiteSpace<TMatchOutput>( System.Func<IsNullWhiteSpace, TMatchOutput> @isNullWhiteSpace, System.Func<TMatchOutput> @ else ) => @ else (); public override void MatchIsString( System.Action<IsString> @isString, System.Action @ else ) => @isString( this ); public override void MatchIsLong( System.Action<IsLong> @isLong, System.Action @ else ) => @ else (); public override void MatchIsDate( System.Action<IsDate> @isDate, System.Action @ else ) => @ else (); public override void MatchIsNullWhiteSpace( System.Action<IsNullWhiteSpace> @isNullWhiteSpace, System.Action @ else ) => @ else (); public override TMatchOutput MatchIsString<TState, TMatchOutput>( TState state, System.Func<TState, IsString, TMatchOutput> @isString, System.Func<TState, TMatchOutput> @ else ) => @isString(state, this ); public override TMatchOutput MatchIsLong<TState, TMatchOutput>( TState state, System.Func<TState, IsLong, TMatchOutput> @isLong, System.Func<TState, TMatchOutput> @ else ) => @ else (state); public override TMatchOutput MatchIsDate<TState, TMatchOutput>( TState state, System.Func<TState, IsDate, TMatchOutput> @isDate, System.Func<TState, TMatchOutput> @ else ) => @ else (state); public override TMatchOutput MatchIsNullWhiteSpace<TState, TMatchOutput>( TState state, System.Func<TState, IsNullWhiteSpace, TMatchOutput> @isNullWhiteSpace, System.Func<TState, TMatchOutput> @ else ) => @ else (state); public override void MatchIsString<TState>( TState state, System.Action<TState, IsString> @isString, System.Action<TState> @ else ) => @isString(state, this ); public override void MatchIsLong<TState>( TState state, System.Action<TState, IsLong> @isLong, System.Action<TState> @ else ) => @ else (state); public override void MatchIsDate<TState>( TState state, System.Action<TState, IsDate> @isDate, System.Action<TState> @ else ) => @ else (state); public override void MatchIsNullWhiteSpace<TState>( TState state, System.Action<TState, IsNullWhiteSpace> @isNullWhiteSpace, System.Action<TState> @ else ) => @ else (state); } public sealed partial record IsLong : WhatIsTheString { public override TMatchOutput Match<TMatchOutput>( System.Func<IsString, TMatchOutput> @isString, System.Func<IsLong, TMatchOutput> @isLong, System.Func<IsDate, TMatchOutput> @isDate, System.Func<IsNullWhiteSpace, TMatchOutput> @isNullWhiteSpace ) => @isLong( this ); public override void Match( System.Action<IsString> @isString, System.Action<IsLong> @isLong, System.Action<IsDate> @isDate, System.Action<IsNullWhiteSpace> @isNullWhiteSpace ) => @isLong( this ); public override TMatchOutput Match<TState, TMatchOutput>( TState state, System.Func<TState, IsString, TMatchOutput> @isString, System.Func<TState, IsLong, TMatchOutput> @isLong, System.Func<TState, IsDate, TMatchOutput> @isDate, System.Func<TState, IsNullWhiteSpace, TMatchOutput> @isNullWhiteSpace ) => @isLong(state, this ); public override void Match<TState>( TState state, System.Action<TState, IsString> @isString, System.Action<TState, IsLong> @isLong, System.Action<TState, IsDate> @isDate, System.Action<TState, IsNullWhiteSpace> @isNullWhiteSpace ) => @isLong(state, this ); public override TMatchOutput MatchIsString<TMatchOutput>( System.Func<IsString, TMatchOutput> @isString, System.Func<TMatchOutput> @ else ) => @ else (); public override TMatchOutput MatchIsLong<TMatchOutput>( System.Func<IsLong, TMatchOutput> @isLong, System.Func<TMatchOutput> @ else ) => @isLong( this ); public override TMatchOutput MatchIsDate<TMatchOutput>( System.Func<IsDate, TMatchOutput> @isDate, System.Func<TMatchOutput> @ else ) => @ else (); public override TMatchOutput MatchIsNullWhiteSpace<TMatchOutput>( System.Func<IsNullWhiteSpace, TMatchOutput> @isNullWhiteSpace, System.Func<TMatchOutput> @ else ) => @ else (); public override void MatchIsString( System.Action<IsString> @isString, System.Action @ else ) => @ else (); public override void MatchIsLong( System.Action<IsLong> @isLong, System.Action @ else ) => @isLong( this ); public override void MatchIsDate( System.Action<IsDate> @isDate, System.Action @ else ) => @ else (); public override void MatchIsNullWhiteSpace( System.Action<IsNullWhiteSpace> @isNullWhiteSpace, System.Action @ else ) => @ else (); public override TMatchOutput MatchIsString<TState, TMatchOutput>( TState state, System.Func<TState, IsString, TMatchOutput> @isString, System.Func<TState, TMatchOutput> @ else ) => @ else (state); public override TMatchOutput MatchIsLong<TState, TMatchOutput>( TState state, System.Func<TState, IsLong, TMatchOutput> @isLong, System.Func<TState, TMatchOutput> @ else ) => @isLong(state, this ); public override TMatchOutput MatchIsDate<TState, TMatchOutput>( TState state, System.Func<TState, IsDate, TMatchOutput> @isDate, System.Func<TState, TMatchOutput> @ else ) => @ else (state); public override TMatchOutput MatchIsNullWhiteSpace<TState, TMatchOutput>( TState state, System.Func<TState, IsNullWhiteSpace, TMatchOutput> @isNullWhiteSpace, System.Func<TState, TMatchOutput> @ else ) => @ else (state); public override void MatchIsString<TState>( TState state, System.Action<TState, IsString> @isString, System.Action<TState> @ else ) => @ else (state); public override void MatchIsLong<TState>( TState state, System.Action<TState, IsLong> @isLong, System.Action<TState> @ else ) => @isLong(state, this ); public override void MatchIsDate<TState>( TState state, System.Action<TState, IsDate> @isDate, System.Action<TState> @ else ) => @ else (state); public override void MatchIsNullWhiteSpace<TState>( TState state, System.Action<TState, IsNullWhiteSpace> @isNullWhiteSpace, System.Action<TState> @ else ) => @ else (state); } public sealed partial record IsDate : WhatIsTheString { public override TMatchOutput Match<TMatchOutput>( System.Func<IsString, TMatchOutput> @isString, System.Func<IsLong, TMatchOutput> @isLong, System.Func<IsDate, TMatchOutput> @isDate, System.Func<IsNullWhiteSpace, TMatchOutput> @isNullWhiteSpace ) => @isDate( this ); public override void Match( System.Action<IsString> @isString, System.Action<IsLong> @isLong, System.Action<IsDate> @isDate, System.Action<IsNullWhiteSpace> @isNullWhiteSpace ) => @isDate( this ); public override TMatchOutput Match<TState, TMatchOutput>( TState state, System.Func<TState, IsString, TMatchOutput> @isString, System.Func<TState, IsLong, TMatchOutput> @isLong, System.Func<TState, IsDate, TMatchOutput> @isDate, System.Func<TState, IsNullWhiteSpace, TMatchOutput> @isNullWhiteSpace ) => @isDate(state, this ); public override void Match<TState>( TState state, System.Action<TState, IsString> @isString, System.Action<TState, IsLong> @isLong, System.Action<TState, IsDate> @isDate, System.Action<TState, IsNullWhiteSpace> @isNullWhiteSpace ) => @isDate(state, this ); public override TMatchOutput MatchIsString<TMatchOutput>( System.Func<IsString, TMatchOutput> @isString, System.Func<TMatchOutput> @ else ) => @ else (); public override TMatchOutput MatchIsLong<TMatchOutput>( System.Func<IsLong, TMatchOutput> @isLong, System.Func<TMatchOutput> @ else ) => @ else (); public override TMatchOutput MatchIsDate<TMatchOutput>( System.Func<IsDate, TMatchOutput> @isDate, System.Func<TMatchOutput> @ else ) => @isDate( this ); public override TMatchOutput MatchIsNullWhiteSpace<TMatchOutput>( System.Func<IsNullWhiteSpace, TMatchOutput> @isNullWhiteSpace, System.Func<TMatchOutput> @ else ) => @ else (); public override void MatchIsString( System.Action<IsString> @isString, System.Action @ else ) => @ else (); public override void MatchIsLong( System.Action<IsLong> @isLong, System.Action @ else ) => @ else (); public override void MatchIsDate( System.Action<IsDate> @isDate, System.Action @ else ) => @isDate( this ); public override void MatchIsNullWhiteSpace( System.Action<IsNullWhiteSpace> @isNullWhiteSpace, System.Action @ else ) => @ else (); public override TMatchOutput MatchIsString<TState, TMatchOutput>( TState state, System.Func<TState, IsString, TMatchOutput> @isString, System.Func<TState, TMatchOutput> @ else ) => @ else (state); public override TMatchOutput MatchIsLong<TState, TMatchOutput>( TState state, System.Func<TState, IsLong, TMatchOutput> @isLong, System.Func<TState, TMatchOutput> @ else ) => @ else (state); public override TMatchOutput MatchIsDate<TState, TMatchOutput>( TState state, System.Func<TState, IsDate, TMatchOutput> @isDate, System.Func<TState, TMatchOutput> @ else ) => @isDate(state, this ); public override TMatchOutput MatchIsNullWhiteSpace<TState, TMatchOutput>( TState state, System.Func<TState, IsNullWhiteSpace, TMatchOutput> @isNullWhiteSpace, System.Func<TState, TMatchOutput> @ else ) => @ else (state); public override void MatchIsString<TState>( TState state, System.Action<TState, IsString> @isString, System.Action<TState> @ else ) => @ else (state); public override void MatchIsLong<TState>( TState state, System.Action<TState, IsLong> @isLong, System.Action<TState> @ else ) => @ else (state); public override void MatchIsDate<TState>( TState state, System.Action<TState, IsDate> @isDate, System.Action<TState> @ else ) => @isDate(state, this ); public override void MatchIsNullWhiteSpace<TState>( TState state, System.Action<TState, IsNullWhiteSpace> @isNullWhiteSpace, System.Action<TState> @ else ) => @ else (state); } public sealed partial record IsNullWhiteSpace : WhatIsTheString { public override TMatchOutput Match<TMatchOutput>( System.Func<IsString, TMatchOutput> @isString, System.Func<IsLong, TMatchOutput> @isLong, System.Func<IsDate, TMatchOutput> @isDate, System.Func<IsNullWhiteSpace, TMatchOutput> @isNullWhiteSpace ) => @isNullWhiteSpace( this ); public override void Match( System.Action<IsString> @isString, System.Action<IsLong> @isLong, System.Action<IsDate> @isDate, System.Action<IsNullWhiteSpace> @isNullWhiteSpace ) => @isNullWhiteSpace( this ); public override TMatchOutput Match<TState, TMatchOutput>( TState state, System.Func<TState, IsString, TMatchOutput> @isString, System.Func<TState, IsLong, TMatchOutput> @isLong, System.Func<TState, IsDate, TMatchOutput> @isDate, System.Func<TState, IsNullWhiteSpace, TMatchOutput> @isNullWhiteSpace ) => @isNullWhiteSpace(state, this ); public override void Match<TState>( TState state, System.Action<TState, IsString> @isString, System.Action<TState, IsLong> @isLong, System.Action<TState, IsDate> @isDate, System.Action<TState, IsNullWhiteSpace> @isNullWhiteSpace ) => @isNullWhiteSpace(state, this ); public override TMatchOutput MatchIsString<TMatchOutput>( System.Func<IsString, TMatchOutput> @isString, System.Func<TMatchOutput> @ else ) => @ else (); public override TMatchOutput MatchIsLong<TMatchOutput>( System.Func<IsLong, TMatchOutput> @isLong, System.Func<TMatchOutput> @ else ) => @ else (); public override TMatchOutput MatchIsDate<TMatchOutput>( System.Func<IsDate, TMatchOutput> @isDate, System.Func<TMatchOutput> @ else ) => @ else (); public override TMatchOutput MatchIsNullWhiteSpace<TMatchOutput>( System.Func<IsNullWhiteSpace, TMatchOutput> @isNullWhiteSpace, System.Func<TMatchOutput> @ else ) => @isNullWhiteSpace( this ); public override void MatchIsString( System.Action<IsString> @isString, System.Action @ else ) => @ else (); public override void MatchIsLong( System.Action<IsLong> @isLong, System.Action @ else ) => @ else (); public override void MatchIsDate( System.Action<IsDate> @isDate, System.Action @ else ) => @ else (); public override void MatchIsNullWhiteSpace( System.Action<IsNullWhiteSpace> @isNullWhiteSpace, System.Action @ else ) => @isNullWhiteSpace( this ); public override TMatchOutput MatchIsString<TState, TMatchOutput>( TState state, System.Func<TState, IsString, TMatchOutput> @isString, System.Func<TState, TMatchOutput> @ else ) => @ else (state); public override TMatchOutput MatchIsLong<TState, TMatchOutput>( TState state, System.Func<TState, IsLong, TMatchOutput> @isLong, System.Func<TState, TMatchOutput> @ else ) => @ else (state); public override TMatchOutput MatchIsDate<TState, TMatchOutput>( TState state, System.Func<TState, IsDate, TMatchOutput> @isDate, System.Func<TState, TMatchOutput> @ else ) => @ else (state); public override TMatchOutput MatchIsNullWhiteSpace<TState, TMatchOutput>( TState state, System.Func<TState, IsNullWhiteSpace, TMatchOutput> @isNullWhiteSpace, System.Func<TState, TMatchOutput> @ else ) => @isNullWhiteSpace(state, this ); public override void MatchIsString<TState>( TState state, System.Action<TState, IsString> @isString, System.Action<TState> @ else ) => @ else (state); public override void MatchIsLong<TState>( TState state, System.Action<TState, IsLong> @isLong, System.Action<TState> @ else ) => @ else (state); public override void MatchIsDate<TState>( TState state, System.Action<TState, IsDate> @isDate, System.Action<TState> @ else ) => @ else (state); public override void MatchIsNullWhiteSpace<TState>( TState state, System.Action<TState, IsNullWhiteSpace> @isNullWhiteSpace, System.Action<TState> @ else ) => @isNullWhiteSpace(state, this ); } } #pragma warning restore 1591 |
001 002 003 004 005 006 007 008 009 010 011 012 013 014 015 016 017 018 019 020 021 022 023 024 025 026 027 028 029 030 031 032 033 034 035 036 037 038 039 040 041 042 043 044 045 046 047 048 049 050 051 052 053 054 055 056 057 058 059 060 061 062 063 064 065 066 067 068 069 070 071 072 073 074 075 076 077 078 079 080 081 082 083 084 085 086 087 088 089 090 091 092 093 094 095 096 097 098 099 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 | #pragma warning disable 1591 namespace duneDemo; internal static class WhatIsTheStringMatchExtensions { public static async System.Threading.Tasks.Task<TMatchOutput> MatchAsync<TMatchOutput>( this System.Threading.Tasks.Task<WhatIsTheString> unionTask, System.Func<WhatIsTheString.IsString, TMatchOutput> @isString, System.Func<WhatIsTheString.IsLong, TMatchOutput> @isLong, System.Func<WhatIsTheString.IsDate, TMatchOutput> @isDate, System.Func<WhatIsTheString.IsNullWhiteSpace, TMatchOutput> @isNullWhiteSpace ) => ( await unionTask.ConfigureAwait( false )).Match( @isString, @isLong, @isDate, @isNullWhiteSpace ); public static async System.Threading.Tasks.ValueTask<TMatchOutput> MatchAsync<TMatchOutput>( this System.Threading.Tasks.ValueTask<WhatIsTheString> unionTask, System.Func<WhatIsTheString.IsString, TMatchOutput> @isString, System.Func<WhatIsTheString.IsLong, TMatchOutput> @isLong, System.Func<WhatIsTheString.IsDate, TMatchOutput> @isDate, System.Func<WhatIsTheString.IsNullWhiteSpace, TMatchOutput> @isNullWhiteSpace ) => ( await unionTask.ConfigureAwait( false )).Match( @isString, @isLong, @isDate, @isNullWhiteSpace ); public static async System.Threading.Tasks.Task MatchAsync( this System.Threading.Tasks.Task<WhatIsTheString> unionTask, System.Action<WhatIsTheString.IsString> @isString, System.Action<WhatIsTheString.IsLong> @isLong, System.Action<WhatIsTheString.IsDate> @isDate, System.Action<WhatIsTheString.IsNullWhiteSpace> @isNullWhiteSpace ) => ( await unionTask.ConfigureAwait( false )).Match( @isString, @isLong, @isDate, @isNullWhiteSpace ); public static async System.Threading.Tasks.ValueTask MatchAsync( this System.Threading.Tasks.ValueTask<WhatIsTheString> unionTask, System.Action<WhatIsTheString.IsString> @isString, System.Action<WhatIsTheString.IsLong> @isLong, System.Action<WhatIsTheString.IsDate> @isDate, System.Action<WhatIsTheString.IsNullWhiteSpace> @isNullWhiteSpace ) => ( await unionTask.ConfigureAwait( false )).Match( @isString, @isLong, @isDate, @isNullWhiteSpace ); public static async System.Threading.Tasks.Task<TMatchOutput> MatchIsStringAsync<TMatchOutput>( this System.Threading.Tasks.Task<WhatIsTheString> unionTask, System.Func<WhatIsTheString.IsString, TMatchOutput> @isString, System.Func<TMatchOutput> @ else ) => ( await unionTask.ConfigureAwait( false )) .MatchIsString( @isString, @ else ); public static async System.Threading.Tasks.Task<TMatchOutput> MatchIsLongAsync<TMatchOutput>( this System.Threading.Tasks.Task<WhatIsTheString> unionTask, System.Func<WhatIsTheString.IsLong, TMatchOutput> @isLong, System.Func<TMatchOutput> @ else ) => ( await unionTask.ConfigureAwait( false )) .MatchIsLong( @isLong, @ else ); public static async System.Threading.Tasks.Task<TMatchOutput> MatchIsDateAsync<TMatchOutput>( this System.Threading.Tasks.Task<WhatIsTheString> unionTask, System.Func<WhatIsTheString.IsDate, TMatchOutput> @isDate, System.Func<TMatchOutput> @ else ) => ( await unionTask.ConfigureAwait( false )) .MatchIsDate( @isDate, @ else ); public static async System.Threading.Tasks.Task<TMatchOutput> MatchIsNullWhiteSpaceAsync<TMatchOutput>( this System.Threading.Tasks.Task<WhatIsTheString> unionTask, System.Func<WhatIsTheString.IsNullWhiteSpace, TMatchOutput> @isNullWhiteSpace, System.Func<TMatchOutput> @ else ) => ( await unionTask.ConfigureAwait( false )) .MatchIsNullWhiteSpace( @isNullWhiteSpace, @ else ); public static async System.Threading.Tasks.ValueTask<TMatchOutput> MatchIsStringAsync<TMatchOutput>( this System.Threading.Tasks.ValueTask<WhatIsTheString> unionTask, System.Func<WhatIsTheString.IsString, TMatchOutput> @isString, System.Func<TMatchOutput> @ else ) => ( await unionTask.ConfigureAwait( false )) .MatchIsString( @isString, @ else ); public static async System.Threading.Tasks.ValueTask<TMatchOutput> MatchIsLongAsync<TMatchOutput>( this System.Threading.Tasks.ValueTask<WhatIsTheString> unionTask, System.Func<WhatIsTheString.IsLong, TMatchOutput> @isLong, System.Func<TMatchOutput> @ else ) => ( await unionTask.ConfigureAwait( false )) .MatchIsLong( @isLong, @ else ); public static async System.Threading.Tasks.ValueTask<TMatchOutput> MatchIsDateAsync<TMatchOutput>( this System.Threading.Tasks.ValueTask<WhatIsTheString> unionTask, System.Func<WhatIsTheString.IsDate, TMatchOutput> @isDate, System.Func<TMatchOutput> @ else ) => ( await unionTask.ConfigureAwait( false )) .MatchIsDate( @isDate, @ else ); public static async System.Threading.Tasks.ValueTask<TMatchOutput> MatchIsNullWhiteSpaceAsync<TMatchOutput>( this System.Threading.Tasks.ValueTask<WhatIsTheString> unionTask, System.Func<WhatIsTheString.IsNullWhiteSpace, TMatchOutput> @isNullWhiteSpace, System.Func<TMatchOutput> @ else ) => ( await unionTask.ConfigureAwait( false )) .MatchIsNullWhiteSpace( @isNullWhiteSpace, @ else ); public static async System.Threading.Tasks.Task MatchIsStringAsync( this System.Threading.Tasks.Task<WhatIsTheString> unionTask, System.Action<WhatIsTheString.IsString> @isString, System.Action @ else ) => ( await unionTask.ConfigureAwait( false )) .MatchIsString( @isString, @ else ); public static async System.Threading.Tasks.Task MatchIsLongAsync( this System.Threading.Tasks.Task<WhatIsTheString> unionTask, System.Action<WhatIsTheString.IsLong> @isLong, System.Action @ else ) => ( await unionTask.ConfigureAwait( false )) .MatchIsLong( @isLong, @ else ); public static async System.Threading.Tasks.Task MatchIsDateAsync( this System.Threading.Tasks.Task<WhatIsTheString> unionTask, System.Action<WhatIsTheString.IsDate> @isDate, System.Action @ else ) => ( await unionTask.ConfigureAwait( false )) .MatchIsDate( @isDate, @ else ); public static async System.Threading.Tasks.Task MatchIsNullWhiteSpaceAsync( this System.Threading.Tasks.Task<WhatIsTheString> unionTask, System.Action<WhatIsTheString.IsNullWhiteSpace> @isNullWhiteSpace, System.Action @ else ) => ( await unionTask.ConfigureAwait( false )) .MatchIsNullWhiteSpace( @isNullWhiteSpace, @ else ); public static async System.Threading.Tasks.ValueTask MatchIsStringAsync( this System.Threading.Tasks.ValueTask<WhatIsTheString> unionTask, System.Action<WhatIsTheString.IsString> @isString, System.Action @ else ) => ( await unionTask.ConfigureAwait( false )) .MatchIsString( @isString, @ else ); public static async System.Threading.Tasks.ValueTask MatchIsLongAsync( this System.Threading.Tasks.ValueTask<WhatIsTheString> unionTask, System.Action<WhatIsTheString.IsLong> @isLong, System.Action @ else ) => ( await unionTask.ConfigureAwait( false )) .MatchIsLong( @isLong, @ else ); public static async System.Threading.Tasks.ValueTask MatchIsDateAsync( this System.Threading.Tasks.ValueTask<WhatIsTheString> unionTask, System.Action<WhatIsTheString.IsDate> @isDate, System.Action @ else ) => ( await unionTask.ConfigureAwait( false )) .MatchIsDate( @isDate, @ else ); public static async System.Threading.Tasks.ValueTask MatchIsNullWhiteSpaceAsync( this System.Threading.Tasks.ValueTask<WhatIsTheString> unionTask, System.Action<WhatIsTheString.IsNullWhiteSpace> @isNullWhiteSpace, System.Action @ else ) => ( await unionTask.ConfigureAwait( false )) .MatchIsNullWhiteSpace( @isNullWhiteSpace, @ else ); } #pragma warning restore 1591 |
Code and pdf at
https://ignatandrei.github.io/RSCG_Examples/v2/docs/dunet
Leave a Reply