You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
# Modifiable Variables
2
-
Modifiable variable allows one to set modifications to basic types after or before their values are actually determined. When their actual values are determined and one tries to access the value via getters the original value will be returned in a modified form accordingly.
2
+
Modifiable variable allows one to set modifications to basic types after or before their values are actually determined. When their actual values are determined and one tries to access the value via getters, the original value will be returned in a modified form accordingly.
3
3
4
4
The best way to present the functionality of this concept is by means of a simple example:
5
5
@@ -15,20 +15,20 @@ In this example, we defined a new ModifiableInteger and set its value to 30. Nex
15
15
You can use further modifications to an integer value, for example subtract, xor or shift.
16
16
17
17
# Modifiable variables in Java
18
-
If you use a modifiable variable in your Java code, use the modification factories, e.g.:
18
+
If you use a modifiable variable in your Java code, use the modification factories, for example:
Copy file name to clipboardExpand all lines: pom.xml
+15Lines changed: 15 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,19 @@
5
5
<artifactId>ModifiableVariable</artifactId>
6
6
<version>2.0</version>
7
7
<packaging>jar</packaging>
8
+
9
+
<name>ModifiableVariable</name>
10
+
<description>A Modifiable Variable concept allows for easy runtime modifications of basic data types like integers, booleans, or byte arrays</description>
0 commit comments