fuzzycopy 0.1.0

Copying data from one struct type to another for lazy people


To use this package, run the following command in your project's root directory:

Manual usage
Put the following dependency into your project's dependences section:

fuzzyCP

Who knows the problem, you have a struct Foo of form

struct Foo {
	int a = 10;
	int b = 20;
}

and need to copy it to a struct Bar of form

struct Bar {
	long a;
	byte b;
}

You could copy the field by hands, or use fuzzyCP. fuzzyCP will copy all members from Foo to Bar where Foo and Bar members have the same name.

Use it like so:

Foo foo;
assert(foo.a == 10);
assert(foo.b == 20);

Bar bar;

fuzzyCP(foo, bar);

assert(bar.a == 10);
assert(bar.b == 20);

By default, fuzzyCP will do a best effort copy of all the members of Foo to Bar. That means, if Foo has a member that Bar does not have nothing will happen. If a member in Foo can be converted with std.conv.to that function will be used.

Authors:
  • burner
Dependencies:
none
Versions:
1.0.2 2023-Dec-15
1.0.1 2021-Oct-29
1.0.0 2019-Jul-17
0.3.0 2019-Jun-20
0.2.1 2018-Sep-11
Show all 8 versions
Download Stats:
  • 1 downloads today

  • 34 downloads this week

  • 105 downloads this month

  • 7589 downloads total

Score:
1.5
Short URL:
fuzzycopy.dub.pm