├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── data ├── bitwise │ └── functions │ │ ├── 32 │ │ ├── signed │ │ │ ├── add │ │ │ │ └── main.mcfunction │ │ │ ├── and │ │ │ │ └── main.mcfunction │ │ │ ├── copy │ │ │ │ └── r0_1.mcfunction │ │ │ ├── divide │ │ │ │ └── main.mcfunction │ │ │ ├── modulo │ │ │ │ └── main.mcfunction │ │ │ ├── multiply │ │ │ │ └── main.mcfunction │ │ │ ├── shift │ │ │ │ ├── left │ │ │ │ │ └── main.mcfunction │ │ │ │ ├── remove_sign.mcfunction │ │ │ │ └── right │ │ │ │ │ └── main.mcfunction │ │ │ ├── subtract │ │ │ │ └── main.mcfunction │ │ │ └── to_bits │ │ │ │ ├── main.mcfunction │ │ │ │ ├── r1.mcfunction │ │ │ │ ├── r10.mcfunction │ │ │ │ ├── r11.mcfunction │ │ │ │ ├── r12.mcfunction │ │ │ │ ├── r13.mcfunction │ │ │ │ ├── r14.mcfunction │ │ │ │ ├── r15.mcfunction │ │ │ │ ├── r16.mcfunction │ │ │ │ ├── r17.mcfunction │ │ │ │ ├── r18.mcfunction │ │ │ │ ├── r19.mcfunction │ │ │ │ ├── r2.mcfunction │ │ │ │ ├── r20.mcfunction │ │ │ │ ├── r21.mcfunction │ │ │ │ ├── r22.mcfunction │ │ │ │ ├── r23.mcfunction │ │ │ │ ├── r24.mcfunction │ │ │ │ ├── r25.mcfunction │ │ │ │ ├── r26.mcfunction │ │ │ │ ├── r27.mcfunction │ │ │ │ ├── r28.mcfunction │ │ │ │ ├── r29.mcfunction │ │ │ │ ├── r3.mcfunction │ │ │ │ ├── r30.mcfunction │ │ │ │ ├── r31.mcfunction │ │ │ │ ├── r4.mcfunction │ │ │ │ ├── r5.mcfunction │ │ │ │ ├── r6.mcfunction │ │ │ │ ├── r7.mcfunction │ │ │ │ ├── r8.mcfunction │ │ │ │ └── r9.mcfunction │ │ └── unsigned │ │ │ ├── add │ │ │ └── main.mcfunction │ │ │ ├── and │ │ │ └── main.mcfunction │ │ │ ├── copy │ │ │ └── r0_1.mcfunction │ │ │ ├── divide │ │ │ └── main.mcfunction │ │ │ ├── divmod │ │ │ ├── b0.mcfunction │ │ │ ├── b00.mcfunction │ │ │ ├── b01.mcfunction │ │ │ ├── b010.mcfunction │ │ │ ├── b011.mcfunction │ │ │ ├── b1.mcfunction │ │ │ └── main.mcfunction │ │ │ ├── modulo │ │ │ └── main.mcfunction │ │ │ ├── multiply │ │ │ └── main.mcfunction │ │ │ ├── shift │ │ │ ├── left │ │ │ │ └── main.mcfunction │ │ │ ├── remove_sign.mcfunction │ │ │ └── right │ │ │ │ └── main.mcfunction │ │ │ ├── subtract │ │ │ └── main.mcfunction │ │ │ └── to_bits │ │ │ ├── main.mcfunction │ │ │ ├── r1.mcfunction │ │ │ ├── r10.mcfunction │ │ │ ├── r11.mcfunction │ │ │ ├── r12.mcfunction │ │ │ ├── r13.mcfunction │ │ │ ├── r14.mcfunction │ │ │ ├── r15.mcfunction │ │ │ ├── r16.mcfunction │ │ │ ├── r17.mcfunction │ │ │ ├── r18.mcfunction │ │ │ ├── r19.mcfunction │ │ │ ├── r2.mcfunction │ │ │ ├── r20.mcfunction │ │ │ ├── r21.mcfunction │ │ │ ├── r22.mcfunction │ │ │ ├── r23.mcfunction │ │ │ ├── r24.mcfunction │ │ │ ├── r25.mcfunction │ │ │ ├── r26.mcfunction │ │ │ ├── r27.mcfunction │ │ │ ├── r28.mcfunction │ │ │ ├── r29.mcfunction │ │ │ ├── r3.mcfunction │ │ │ ├── r30.mcfunction │ │ │ ├── r31.mcfunction │ │ │ ├── r4.mcfunction │ │ │ ├── r5.mcfunction │ │ │ ├── r6.mcfunction │ │ │ ├── r7.mcfunction │ │ │ ├── r8.mcfunction │ │ │ └── r9.mcfunction │ │ ├── setup.mcfunction │ │ └── uninstall.mcfunction ├── extended_float │ └── functions │ │ ├── 32 │ │ ├── acos │ │ │ └── main.mcfunction │ │ ├── asin │ │ │ ├── half_pi.mcfunction │ │ │ ├── in_bounds.mcfunction │ │ │ ├── main.mcfunction │ │ │ └── nan.mcfunction │ │ ├── atan │ │ │ ├── as_entity.mcfunction │ │ │ └── main.mcfunction │ │ ├── ceiling │ │ │ ├── add_1.mcfunction │ │ │ ├── main.mcfunction │ │ │ ├── one.mcfunction │ │ │ └── zero.mcfunction │ │ ├── cos │ │ │ ├── main.mcfunction │ │ │ └── real.mcfunction │ │ ├── exponential │ │ │ ├── e.mcfunction │ │ │ ├── floor_nonzero.mcfunction │ │ │ ├── floor_zero.mcfunction │ │ │ ├── in_range.mcfunction │ │ │ ├── main.mcfunction │ │ │ ├── negative.mcfunction │ │ │ ├── non_zero.mcfunction │ │ │ ├── one.mcfunction │ │ │ ├── pos_inf.mcfunction │ │ │ ├── positive.mcfunction │ │ │ └── zero.mcfunction │ │ ├── fast_inverse_sqrt │ │ │ ├── inf.mcfunction │ │ │ ├── main.mcfunction │ │ │ ├── nan.mcfunction │ │ │ └── positive.mcfunction │ │ ├── float_type │ │ │ ├── main.mcfunction │ │ │ ├── one.mcfunction │ │ │ ├── pi_not_invalid.mcfunction │ │ │ └── possible_integer.mcfunction │ │ ├── floor │ │ │ ├── main.mcfunction │ │ │ ├── n_one.mcfunction │ │ │ ├── sub_1.mcfunction │ │ │ ├── truncate.mcfunction │ │ │ └── zero.mcfunction │ │ ├── log │ │ │ ├── calculate_exponent.mcfunction │ │ │ ├── main.mcfunction │ │ │ ├── negative.mcfunction │ │ │ ├── positive.mcfunction │ │ │ └── zero.mcfunction │ │ ├── power │ │ │ ├── int.mcfunction │ │ │ ├── integer_exponent │ │ │ │ ├── check_even.mcfunction │ │ │ │ ├── even.mcfunction │ │ │ │ ├── main.mcfunction │ │ │ │ ├── negative.mcfunction │ │ │ │ ├── odd.mcfunction │ │ │ │ ├── one.mcfunction │ │ │ │ └── zero.mcfunction │ │ │ ├── main.mcfunction │ │ │ ├── nan.mcfunction │ │ │ ├── negative_base.mcfunction │ │ │ ├── not_integer_exponent │ │ │ │ └── main.mcfunction │ │ │ ├── not_zero.mcfunction │ │ │ ├── odd.mcfunction │ │ │ ├── positive_base.mcfunction │ │ │ └── zero.mcfunction │ │ ├── root │ │ │ ├── main.mcfunction │ │ │ ├── negative_radicand.mcfunction │ │ │ ├── not_sqrt.mcfunction │ │ │ └── sqrt.mcfunction │ │ ├── sin │ │ │ ├── main.mcfunction │ │ │ ├── nan.mcfunction │ │ │ ├── real.mcfunction │ │ │ └── zero.mcfunction │ │ ├── tan │ │ │ ├── main.mcfunction │ │ │ └── real.mcfunction │ │ └── truncate │ │ │ ├── b │ │ │ ├── 1.mcfunction │ │ │ ├── 12.mcfunction │ │ │ ├── 16.mcfunction │ │ │ ├── 17.mcfunction │ │ │ ├── 2.mcfunction │ │ │ ├── 20.mcfunction │ │ │ ├── 3.mcfunction │ │ │ ├── 4.mcfunction │ │ │ ├── 5.mcfunction │ │ │ ├── 8.mcfunction │ │ │ └── main.mcfunction │ │ │ ├── main.mcfunction │ │ │ └── zero.mcfunction │ │ ├── setup.mcfunction │ │ └── uninstall.mcfunction ├── float │ └── functions │ │ ├── 32 │ │ ├── absolute_value │ │ │ └── main.mcfunction │ │ ├── add │ │ │ ├── branch0.mcfunction │ │ │ ├── branch1.mcfunction │ │ │ ├── branch10.mcfunction │ │ │ ├── branch11.mcfunction │ │ │ ├── branch110.mcfunction │ │ │ ├── branch1100.mcfunction │ │ │ ├── branch1101.mcfunction │ │ │ ├── branch1102.mcfunction │ │ │ ├── branch111.mcfunction │ │ │ ├── branch1110.mcfunction │ │ │ ├── branch1111.mcfunction │ │ │ ├── branch11110.mcfunction │ │ │ ├── branch11111.mcfunction │ │ │ ├── branch111110.mcfunction │ │ │ ├── branch1112.mcfunction │ │ │ ├── branch12.mcfunction │ │ │ ├── branch2.mcfunction │ │ │ ├── branch3.mcfunction │ │ │ ├── exception │ │ │ │ ├── nan.mcfunction │ │ │ │ ├── overflow.mcfunction │ │ │ │ └── underflow.mcfunction │ │ │ └── main.mcfunction │ │ ├── check_type │ │ │ ├── dne.mcfunction │ │ │ ├── inf.mcfunction │ │ │ ├── main.mcfunction │ │ │ └── zero.mcfunction │ │ ├── compare │ │ │ ├── equal │ │ │ │ └── main.mcfunction │ │ │ ├── greater │ │ │ │ ├── branch0.mcfunction │ │ │ │ └── main.mcfunction │ │ │ ├── greater_equal │ │ │ │ ├── branch0.mcfunction │ │ │ │ └── main.mcfunction │ │ │ ├── less │ │ │ │ ├── branch0.mcfunction │ │ │ │ └── main.mcfunction │ │ │ └── less_equal │ │ │ │ ├── branch0.mcfunction │ │ │ │ └── main.mcfunction │ │ ├── convert │ │ │ ├── from_int │ │ │ │ ├── b │ │ │ │ │ ├── 1.mcfunction │ │ │ │ │ ├── 10.mcfunction │ │ │ │ │ ├── 10_run_0.mcfunction │ │ │ │ │ ├── 10_run_1.mcfunction │ │ │ │ │ ├── 11.mcfunction │ │ │ │ │ ├── 11_run_0.mcfunction │ │ │ │ │ ├── 11_run_1.mcfunction │ │ │ │ │ ├── 12.mcfunction │ │ │ │ │ ├── 12_run_0.mcfunction │ │ │ │ │ ├── 12_run_1.mcfunction │ │ │ │ │ ├── 13.mcfunction │ │ │ │ │ ├── 13_run_0.mcfunction │ │ │ │ │ ├── 13_run_1.mcfunction │ │ │ │ │ ├── 14.mcfunction │ │ │ │ │ ├── 14_run_0.mcfunction │ │ │ │ │ ├── 14_run_1.mcfunction │ │ │ │ │ ├── 15.mcfunction │ │ │ │ │ ├── 15_run_0.mcfunction │ │ │ │ │ ├── 15_run_1.mcfunction │ │ │ │ │ ├── 16.mcfunction │ │ │ │ │ ├── 16_run_0.mcfunction │ │ │ │ │ ├── 16_run_1.mcfunction │ │ │ │ │ ├── 17.mcfunction │ │ │ │ │ ├── 17_run_0.mcfunction │ │ │ │ │ ├── 17_run_1.mcfunction │ │ │ │ │ ├── 18.mcfunction │ │ │ │ │ ├── 18_run_0.mcfunction │ │ │ │ │ ├── 18_run_1.mcfunction │ │ │ │ │ ├── 19.mcfunction │ │ │ │ │ ├── 19_run_0.mcfunction │ │ │ │ │ ├── 19_run_1.mcfunction │ │ │ │ │ ├── 2.mcfunction │ │ │ │ │ ├── 20.mcfunction │ │ │ │ │ ├── 20_run_0.mcfunction │ │ │ │ │ ├── 20_run_1.mcfunction │ │ │ │ │ ├── 3.mcfunction │ │ │ │ │ ├── 4.mcfunction │ │ │ │ │ ├── 5.mcfunction │ │ │ │ │ ├── 5_run_0.mcfunction │ │ │ │ │ ├── 5_run_1.mcfunction │ │ │ │ │ ├── 6.mcfunction │ │ │ │ │ ├── 6_run_0.mcfunction │ │ │ │ │ ├── 6_run_1.mcfunction │ │ │ │ │ ├── 7.mcfunction │ │ │ │ │ ├── 7_run_0.mcfunction │ │ │ │ │ ├── 7_run_1.mcfunction │ │ │ │ │ ├── 8.mcfunction │ │ │ │ │ ├── 8_run_0.mcfunction │ │ │ │ │ ├── 8_run_1.mcfunction │ │ │ │ │ ├── 9.mcfunction │ │ │ │ │ ├── 9_run_0.mcfunction │ │ │ │ │ ├── 9_run_1.mcfunction │ │ │ │ │ └── main.mcfunction │ │ │ │ ├── main.mcfunction │ │ │ │ ├── negative.mcfunction │ │ │ │ └── recomposed.mcfunction │ │ │ ├── to_storage │ │ │ │ ├── b │ │ │ │ │ ├── 1.mcfunction │ │ │ │ │ ├── 10.mcfunction │ │ │ │ │ ├── 11.mcfunction │ │ │ │ │ ├── 12.mcfunction │ │ │ │ │ ├── 13.mcfunction │ │ │ │ │ ├── 14.mcfunction │ │ │ │ │ ├── 15.mcfunction │ │ │ │ │ ├── 16.mcfunction │ │ │ │ │ ├── 17.mcfunction │ │ │ │ │ ├── 18.mcfunction │ │ │ │ │ ├── 19.mcfunction │ │ │ │ │ ├── 2.mcfunction │ │ │ │ │ ├── 20.mcfunction │ │ │ │ │ ├── 21.mcfunction │ │ │ │ │ ├── 22.mcfunction │ │ │ │ │ ├── 23.mcfunction │ │ │ │ │ ├── 24.mcfunction │ │ │ │ │ ├── 25.mcfunction │ │ │ │ │ ├── 26.mcfunction │ │ │ │ │ ├── 27.mcfunction │ │ │ │ │ ├── 28.mcfunction │ │ │ │ │ ├── 29.mcfunction │ │ │ │ │ ├── 3.mcfunction │ │ │ │ │ ├── 30.mcfunction │ │ │ │ │ ├── 31.mcfunction │ │ │ │ │ ├── 32.mcfunction │ │ │ │ │ ├── 33.mcfunction │ │ │ │ │ ├── 34.mcfunction │ │ │ │ │ ├── 35.mcfunction │ │ │ │ │ ├── 36.mcfunction │ │ │ │ │ ├── 37.mcfunction │ │ │ │ │ ├── 38.mcfunction │ │ │ │ │ ├── 39.mcfunction │ │ │ │ │ ├── 4.mcfunction │ │ │ │ │ ├── 40.mcfunction │ │ │ │ │ ├── 41.mcfunction │ │ │ │ │ ├── 42.mcfunction │ │ │ │ │ ├── 43.mcfunction │ │ │ │ │ ├── 44.mcfunction │ │ │ │ │ ├── 45.mcfunction │ │ │ │ │ ├── 46.mcfunction │ │ │ │ │ ├── 47.mcfunction │ │ │ │ │ ├── 48.mcfunction │ │ │ │ │ ├── 49.mcfunction │ │ │ │ │ ├── 5.mcfunction │ │ │ │ │ ├── 50.mcfunction │ │ │ │ │ ├── 51.mcfunction │ │ │ │ │ ├── 52.mcfunction │ │ │ │ │ ├── 53.mcfunction │ │ │ │ │ ├── 54.mcfunction │ │ │ │ │ ├── 55.mcfunction │ │ │ │ │ ├── 56.mcfunction │ │ │ │ │ ├── 57.mcfunction │ │ │ │ │ ├── 58.mcfunction │ │ │ │ │ ├── 59.mcfunction │ │ │ │ │ ├── 6.mcfunction │ │ │ │ │ ├── 60.mcfunction │ │ │ │ │ ├── 61.mcfunction │ │ │ │ │ ├── 62.mcfunction │ │ │ │ │ ├── 63.mcfunction │ │ │ │ │ ├── 64.mcfunction │ │ │ │ │ ├── 65.mcfunction │ │ │ │ │ ├── 66.mcfunction │ │ │ │ │ ├── 67.mcfunction │ │ │ │ │ ├── 68.mcfunction │ │ │ │ │ ├── 69.mcfunction │ │ │ │ │ ├── 7.mcfunction │ │ │ │ │ ├── 70.mcfunction │ │ │ │ │ ├── 71.mcfunction │ │ │ │ │ ├── 72.mcfunction │ │ │ │ │ ├── 73.mcfunction │ │ │ │ │ ├── 74.mcfunction │ │ │ │ │ ├── 75.mcfunction │ │ │ │ │ ├── 76.mcfunction │ │ │ │ │ ├── 77.mcfunction │ │ │ │ │ ├── 78.mcfunction │ │ │ │ │ ├── 79.mcfunction │ │ │ │ │ ├── 8.mcfunction │ │ │ │ │ ├── 80.mcfunction │ │ │ │ │ ├── 81.mcfunction │ │ │ │ │ ├── 82.mcfunction │ │ │ │ │ ├── 83.mcfunction │ │ │ │ │ ├── 84.mcfunction │ │ │ │ │ ├── 9.mcfunction │ │ │ │ │ └── main.mcfunction │ │ │ │ ├── main.mcfunction │ │ │ │ ├── number.mcfunction │ │ │ │ └── special.mcfunction │ │ │ └── to_storage_double │ │ │ │ ├── b │ │ │ │ ├── 1.mcfunction │ │ │ │ ├── 10.mcfunction │ │ │ │ ├── 11.mcfunction │ │ │ │ ├── 12.mcfunction │ │ │ │ ├── 13.mcfunction │ │ │ │ ├── 14.mcfunction │ │ │ │ ├── 15.mcfunction │ │ │ │ ├── 16.mcfunction │ │ │ │ ├── 17.mcfunction │ │ │ │ ├── 18.mcfunction │ │ │ │ ├── 19.mcfunction │ │ │ │ ├── 2.mcfunction │ │ │ │ ├── 20.mcfunction │ │ │ │ ├── 21.mcfunction │ │ │ │ ├── 22.mcfunction │ │ │ │ ├── 23.mcfunction │ │ │ │ ├── 24.mcfunction │ │ │ │ ├── 25.mcfunction │ │ │ │ ├── 26.mcfunction │ │ │ │ ├── 27.mcfunction │ │ │ │ ├── 28.mcfunction │ │ │ │ ├── 29.mcfunction │ │ │ │ ├── 3.mcfunction │ │ │ │ ├── 30.mcfunction │ │ │ │ ├── 31.mcfunction │ │ │ │ ├── 32.mcfunction │ │ │ │ ├── 33.mcfunction │ │ │ │ ├── 34.mcfunction │ │ │ │ ├── 35.mcfunction │ │ │ │ ├── 36.mcfunction │ │ │ │ ├── 37.mcfunction │ │ │ │ ├── 38.mcfunction │ │ │ │ ├── 39.mcfunction │ │ │ │ ├── 4.mcfunction │ │ │ │ ├── 40.mcfunction │ │ │ │ ├── 41.mcfunction │ │ │ │ ├── 42.mcfunction │ │ │ │ ├── 43.mcfunction │ │ │ │ ├── 44.mcfunction │ │ │ │ ├── 45.mcfunction │ │ │ │ ├── 46.mcfunction │ │ │ │ ├── 47.mcfunction │ │ │ │ ├── 48.mcfunction │ │ │ │ ├── 49.mcfunction │ │ │ │ ├── 5.mcfunction │ │ │ │ ├── 50.mcfunction │ │ │ │ ├── 51.mcfunction │ │ │ │ ├── 52.mcfunction │ │ │ │ ├── 53.mcfunction │ │ │ │ ├── 54.mcfunction │ │ │ │ ├── 55.mcfunction │ │ │ │ ├── 56.mcfunction │ │ │ │ ├── 57.mcfunction │ │ │ │ ├── 58.mcfunction │ │ │ │ ├── 59.mcfunction │ │ │ │ ├── 6.mcfunction │ │ │ │ ├── 60.mcfunction │ │ │ │ ├── 61.mcfunction │ │ │ │ ├── 62.mcfunction │ │ │ │ ├── 63.mcfunction │ │ │ │ ├── 64.mcfunction │ │ │ │ ├── 65.mcfunction │ │ │ │ ├── 66.mcfunction │ │ │ │ ├── 67.mcfunction │ │ │ │ ├── 68.mcfunction │ │ │ │ ├── 69.mcfunction │ │ │ │ ├── 7.mcfunction │ │ │ │ ├── 70.mcfunction │ │ │ │ ├── 71.mcfunction │ │ │ │ ├── 72.mcfunction │ │ │ │ ├── 73.mcfunction │ │ │ │ ├── 74.mcfunction │ │ │ │ ├── 75.mcfunction │ │ │ │ ├── 76.mcfunction │ │ │ │ ├── 77.mcfunction │ │ │ │ ├── 78.mcfunction │ │ │ │ ├── 79.mcfunction │ │ │ │ ├── 8.mcfunction │ │ │ │ ├── 80.mcfunction │ │ │ │ ├── 81.mcfunction │ │ │ │ ├── 82.mcfunction │ │ │ │ ├── 83.mcfunction │ │ │ │ ├── 84.mcfunction │ │ │ │ ├── 9.mcfunction │ │ │ │ └── main.mcfunction │ │ │ │ ├── main.mcfunction │ │ │ │ ├── number.mcfunction │ │ │ │ └── special.mcfunction │ │ ├── decompose │ │ │ ├── extract_sign.mcfunction │ │ │ └── main.mcfunction │ │ ├── divide │ │ │ ├── branch0.mcfunction │ │ │ ├── branch1.mcfunction │ │ │ ├── branch2.mcfunction │ │ │ ├── branch20.mcfunction │ │ │ ├── branch21.mcfunction │ │ │ ├── branch210.mcfunction │ │ │ ├── branch2100.mcfunction │ │ │ ├── branch2101.mcfunction │ │ │ ├── branch2102.mcfunction │ │ │ ├── branch2103.mcfunction │ │ │ ├── branch2104.mcfunction │ │ │ ├── branch2105.mcfunction │ │ │ ├── branch2106.mcfunction │ │ │ ├── exception │ │ │ │ ├── nan.mcfunction │ │ │ │ ├── overflow.mcfunction │ │ │ │ └── underflow.mcfunction │ │ │ └── main.mcfunction │ │ ├── multiply │ │ │ ├── branch0.mcfunction │ │ │ ├── branch1.mcfunction │ │ │ ├── branch2.mcfunction │ │ │ ├── branch20.mcfunction │ │ │ ├── branch21.mcfunction │ │ │ ├── branch210-higherprecision.mcfunction │ │ │ ├── branch210.mcfunction │ │ │ ├── branch2100.mcfunction │ │ │ ├── branch2101.mcfunction │ │ │ ├── branch2102.mcfunction │ │ │ ├── branch2103.mcfunction │ │ │ ├── exception │ │ │ │ ├── nan.mcfunction │ │ │ │ ├── overflow.mcfunction │ │ │ │ └── underflow.mcfunction │ │ │ └── main.mcfunction │ │ ├── negate │ │ │ └── main.mcfunction │ │ ├── recompose │ │ │ ├── main.mcfunction │ │ │ └── replace_sign.mcfunction │ │ └── subtract │ │ │ └── main.mcfunction │ │ ├── setup.mcfunction │ │ └── uninstall.mcfunction ├── main │ └── functions │ │ ├── setup.mcfunction │ │ └── uninstall.mcfunction └── unit_tests │ └── functions │ ├── extended_float │ ├── exponent.mcfunction │ ├── float_type.mcfunction │ ├── floor.mcfunction │ ├── power.mcfunction │ └── truncate.mcfunction │ ├── float │ ├── add_numbers.mcfunction │ ├── check_number_type.mcfunction │ ├── convert_from_int.mcfunction │ ├── convert_to_storage.mcfunction │ ├── decompose.mcfunction │ ├── divide_numbers.mcfunction │ ├── multiply_numbers.mcfunction │ └── redecompose.mcfunction │ ├── init.mcfunction │ ├── main.mcfunction │ └── test.mcfunction └── pack.mcmeta /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/README.md -------------------------------------------------------------------------------- /data/bitwise/functions/32/signed/add/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/signed/add/main.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/signed/and/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/signed/and/main.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/signed/copy/r0_1.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/signed/copy/r0_1.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/signed/divide/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/signed/divide/main.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/signed/modulo/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/signed/modulo/main.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/signed/multiply/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/signed/multiply/main.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/signed/shift/left/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/signed/shift/left/main.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/signed/shift/remove_sign.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/signed/shift/remove_sign.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/signed/shift/right/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/signed/shift/right/main.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/signed/subtract/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/signed/subtract/main.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/signed/to_bits/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/signed/to_bits/main.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/signed/to_bits/r1.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/signed/to_bits/r1.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/signed/to_bits/r10.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/signed/to_bits/r10.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/signed/to_bits/r11.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/signed/to_bits/r11.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/signed/to_bits/r12.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/signed/to_bits/r12.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/signed/to_bits/r13.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/signed/to_bits/r13.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/signed/to_bits/r14.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/signed/to_bits/r14.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/signed/to_bits/r15.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/signed/to_bits/r15.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/signed/to_bits/r16.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/signed/to_bits/r16.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/signed/to_bits/r17.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/signed/to_bits/r17.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/signed/to_bits/r18.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/signed/to_bits/r18.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/signed/to_bits/r19.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/signed/to_bits/r19.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/signed/to_bits/r2.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/signed/to_bits/r2.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/signed/to_bits/r20.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/signed/to_bits/r20.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/signed/to_bits/r21.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/signed/to_bits/r21.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/signed/to_bits/r22.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/signed/to_bits/r22.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/signed/to_bits/r23.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/signed/to_bits/r23.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/signed/to_bits/r24.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/signed/to_bits/r24.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/signed/to_bits/r25.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/signed/to_bits/r25.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/signed/to_bits/r26.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/signed/to_bits/r26.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/signed/to_bits/r27.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/signed/to_bits/r27.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/signed/to_bits/r28.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/signed/to_bits/r28.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/signed/to_bits/r29.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/signed/to_bits/r29.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/signed/to_bits/r3.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/signed/to_bits/r3.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/signed/to_bits/r30.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/signed/to_bits/r30.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/signed/to_bits/r31.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/signed/to_bits/r31.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/signed/to_bits/r4.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/signed/to_bits/r4.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/signed/to_bits/r5.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/signed/to_bits/r5.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/signed/to_bits/r6.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/signed/to_bits/r6.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/signed/to_bits/r7.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/signed/to_bits/r7.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/signed/to_bits/r8.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/signed/to_bits/r8.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/signed/to_bits/r9.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/signed/to_bits/r9.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/add/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/add/main.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/and/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/and/main.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/copy/r0_1.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/copy/r0_1.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/divide/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/divide/main.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/divmod/b0.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/divmod/b0.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/divmod/b00.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/divmod/b00.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/divmod/b01.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/divmod/b01.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/divmod/b010.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/divmod/b010.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/divmod/b011.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/divmod/b011.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/divmod/b1.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/divmod/b1.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/divmod/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/divmod/main.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/modulo/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/modulo/main.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/multiply/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/multiply/main.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/shift/left/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/shift/left/main.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/shift/remove_sign.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/shift/remove_sign.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/shift/right/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/shift/right/main.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/subtract/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/subtract/main.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/to_bits/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/to_bits/main.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/to_bits/r1.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/to_bits/r1.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/to_bits/r10.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/to_bits/r10.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/to_bits/r11.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/to_bits/r11.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/to_bits/r12.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/to_bits/r12.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/to_bits/r13.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/to_bits/r13.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/to_bits/r14.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/to_bits/r14.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/to_bits/r15.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/to_bits/r15.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/to_bits/r16.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/to_bits/r16.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/to_bits/r17.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/to_bits/r17.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/to_bits/r18.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/to_bits/r18.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/to_bits/r19.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/to_bits/r19.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/to_bits/r2.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/to_bits/r2.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/to_bits/r20.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/to_bits/r20.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/to_bits/r21.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/to_bits/r21.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/to_bits/r22.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/to_bits/r22.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/to_bits/r23.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/to_bits/r23.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/to_bits/r24.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/to_bits/r24.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/to_bits/r25.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/to_bits/r25.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/to_bits/r26.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/to_bits/r26.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/to_bits/r27.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/to_bits/r27.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/to_bits/r28.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/to_bits/r28.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/to_bits/r29.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/to_bits/r29.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/to_bits/r3.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/to_bits/r3.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/to_bits/r30.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/to_bits/r30.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/to_bits/r31.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/to_bits/r31.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/to_bits/r4.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/to_bits/r4.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/to_bits/r5.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/to_bits/r5.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/to_bits/r6.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/to_bits/r6.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/to_bits/r7.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/to_bits/r7.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/to_bits/r8.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/to_bits/r8.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/32/unsigned/to_bits/r9.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/32/unsigned/to_bits/r9.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/setup.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/setup.mcfunction -------------------------------------------------------------------------------- /data/bitwise/functions/uninstall.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/bitwise/functions/uninstall.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/acos/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/acos/main.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/asin/half_pi.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/asin/half_pi.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/asin/in_bounds.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/asin/in_bounds.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/asin/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/asin/main.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/asin/nan.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/asin/nan.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/atan/as_entity.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/atan/as_entity.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/atan/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/atan/main.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/ceiling/add_1.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/ceiling/add_1.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/ceiling/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/ceiling/main.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/ceiling/one.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/ceiling/one.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/ceiling/zero.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/ceiling/zero.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/cos/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/cos/main.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/cos/real.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/cos/real.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/exponential/e.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/exponential/e.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/exponential/floor_nonzero.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/exponential/floor_nonzero.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/exponential/floor_zero.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/exponential/floor_zero.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/exponential/in_range.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/exponential/in_range.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/exponential/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/exponential/main.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/exponential/negative.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/exponential/negative.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/exponential/non_zero.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/exponential/non_zero.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/exponential/one.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/exponential/one.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/exponential/pos_inf.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/exponential/pos_inf.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/exponential/positive.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/exponential/positive.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/exponential/zero.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/exponential/zero.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/fast_inverse_sqrt/inf.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/fast_inverse_sqrt/inf.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/fast_inverse_sqrt/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/fast_inverse_sqrt/main.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/fast_inverse_sqrt/nan.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/fast_inverse_sqrt/nan.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/fast_inverse_sqrt/positive.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/fast_inverse_sqrt/positive.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/float_type/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/float_type/main.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/float_type/one.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/float_type/one.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/float_type/pi_not_invalid.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/float_type/pi_not_invalid.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/float_type/possible_integer.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/float_type/possible_integer.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/floor/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/floor/main.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/floor/n_one.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/floor/n_one.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/floor/sub_1.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/floor/sub_1.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/floor/truncate.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/floor/truncate.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/floor/zero.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/floor/zero.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/log/calculate_exponent.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/log/calculate_exponent.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/log/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/log/main.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/log/negative.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/log/negative.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/log/positive.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/log/positive.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/log/zero.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/log/zero.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/power/int.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/power/int.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/power/integer_exponent/check_even.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/power/integer_exponent/check_even.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/power/integer_exponent/even.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/power/integer_exponent/even.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/power/integer_exponent/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/power/integer_exponent/main.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/power/integer_exponent/negative.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/power/integer_exponent/negative.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/power/integer_exponent/odd.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/power/integer_exponent/odd.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/power/integer_exponent/one.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/power/integer_exponent/one.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/power/integer_exponent/zero.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/power/integer_exponent/zero.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/power/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/power/main.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/power/nan.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/power/nan.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/power/negative_base.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/power/negative_base.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/power/not_integer_exponent/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/power/not_integer_exponent/main.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/power/not_zero.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/power/not_zero.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/power/odd.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/power/odd.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/power/positive_base.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/power/positive_base.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/power/zero.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/power/zero.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/root/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/root/main.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/root/negative_radicand.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/root/negative_radicand.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/root/not_sqrt.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/root/not_sqrt.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/root/sqrt.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/root/sqrt.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/sin/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/sin/main.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/sin/nan.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/sin/nan.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/sin/real.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/sin/real.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/sin/zero.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/sin/zero.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/tan/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/tan/main.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/tan/real.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/tan/real.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/truncate/b/1.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/truncate/b/1.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/truncate/b/12.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/truncate/b/12.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/truncate/b/16.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/truncate/b/16.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/truncate/b/17.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/truncate/b/17.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/truncate/b/2.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/truncate/b/2.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/truncate/b/20.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/truncate/b/20.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/truncate/b/3.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/truncate/b/3.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/truncate/b/4.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/truncate/b/4.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/truncate/b/5.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/truncate/b/5.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/truncate/b/8.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/truncate/b/8.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/truncate/b/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/truncate/b/main.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/truncate/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/truncate/main.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/32/truncate/zero.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/32/truncate/zero.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/setup.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/extended_float/functions/setup.mcfunction -------------------------------------------------------------------------------- /data/extended_float/functions/uninstall.mcfunction: -------------------------------------------------------------------------------- 1 | #> extended_float:uninstall 2 | 3 | kill fef32a78-71bf-4588-9c82-115070685847 -------------------------------------------------------------------------------- /data/float/functions/32/absolute_value/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/absolute_value/main.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/add/branch0.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/add/branch0.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/add/branch1.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/add/branch1.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/add/branch10.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/add/branch10.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/add/branch11.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/add/branch11.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/add/branch110.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/add/branch110.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/add/branch1100.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/add/branch1100.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/add/branch1101.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/add/branch1101.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/add/branch1102.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/add/branch1102.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/add/branch111.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/add/branch111.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/add/branch1110.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/add/branch1110.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/add/branch1111.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/add/branch1111.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/add/branch11110.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/add/branch11110.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/add/branch11111.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/add/branch11111.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/add/branch111110.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/add/branch111110.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/add/branch1112.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/add/branch1112.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/add/branch12.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/add/branch12.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/add/branch2.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/add/branch2.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/add/branch3.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/add/branch3.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/add/exception/nan.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/add/exception/nan.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/add/exception/overflow.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/add/exception/overflow.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/add/exception/underflow.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/add/exception/underflow.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/add/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/add/main.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/check_type/dne.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/check_type/dne.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/check_type/inf.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/check_type/inf.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/check_type/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/check_type/main.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/check_type/zero.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/check_type/zero.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/compare/equal/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/compare/equal/main.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/compare/greater/branch0.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/compare/greater/branch0.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/compare/greater/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/compare/greater/main.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/compare/greater_equal/branch0.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/compare/greater_equal/branch0.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/compare/greater_equal/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/compare/greater_equal/main.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/compare/less/branch0.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/compare/less/branch0.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/compare/less/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/compare/less/main.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/compare/less_equal/branch0.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/compare/less_equal/branch0.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/compare/less_equal/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/compare/less_equal/main.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/1.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/1.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/10.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/10.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/10_run_0.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/10_run_0.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/10_run_1.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/10_run_1.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/11.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/11.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/11_run_0.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/11_run_0.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/11_run_1.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/11_run_1.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/12.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/12.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/12_run_0.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/12_run_0.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/12_run_1.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/12_run_1.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/13.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/13.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/13_run_0.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/13_run_0.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/13_run_1.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/13_run_1.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/14.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/14.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/14_run_0.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/14_run_0.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/14_run_1.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/14_run_1.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/15.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/15.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/15_run_0.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/15_run_0.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/15_run_1.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/15_run_1.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/16.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/16.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/16_run_0.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/16_run_0.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/16_run_1.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/16_run_1.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/17.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/17.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/17_run_0.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/17_run_0.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/17_run_1.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/17_run_1.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/18.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/18.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/18_run_0.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/18_run_0.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/18_run_1.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/18_run_1.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/19.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/19.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/19_run_0.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/19_run_0.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/19_run_1.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/19_run_1.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/2.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/2.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/20.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/20.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/20_run_0.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/20_run_0.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/20_run_1.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/20_run_1.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/3.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/3.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/4.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/4.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/5.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/5.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/5_run_0.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/5_run_0.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/5_run_1.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/5_run_1.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/6.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/6.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/6_run_0.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/6_run_0.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/6_run_1.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/6_run_1.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/7.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/7.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/7_run_0.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/7_run_0.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/7_run_1.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/7_run_1.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/8.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/8.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/8_run_0.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/8_run_0.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/8_run_1.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/8_run_1.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/9.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/9.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/9_run_0.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/9_run_0.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/9_run_1.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/9_run_1.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/b/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/b/main.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/main.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/negative.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/negative.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/from_int/recomposed.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/from_int/recomposed.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/1.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/1.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/10.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/10.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/11.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/11.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/12.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/12.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/13.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/13.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/14.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/14.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/15.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/15.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/16.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/16.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/17.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/17.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/18.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/18.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/19.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/19.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/2.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/2.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/20.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/20.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/21.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/21.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/22.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/22.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/23.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/23.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/24.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/24.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/25.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/25.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/26.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/26.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/27.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/27.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/28.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/28.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/29.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/29.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/3.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/3.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/30.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/30.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/31.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/31.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/32.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/32.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/33.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/33.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/34.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/34.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/35.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/35.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/36.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/36.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/37.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/37.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/38.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/38.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/39.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/39.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/4.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/4.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/40.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/40.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/41.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/41.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/42.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/42.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/43.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/43.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/44.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/44.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/45.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/45.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/46.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/46.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/47.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/47.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/48.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/48.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/49.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/49.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/5.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/5.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/50.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/50.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/51.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/51.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/52.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/52.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/53.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/53.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/54.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/54.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/55.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/55.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/56.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/56.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/57.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/57.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/58.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/58.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/59.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/59.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/6.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/6.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/60.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/60.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/61.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/61.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/62.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/62.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/63.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/63.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/64.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/64.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/65.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/65.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/66.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/66.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/67.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/67.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/68.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/68.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/69.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/69.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/7.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/7.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/70.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/70.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/71.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/71.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/72.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/72.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/73.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/73.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/74.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/74.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/75.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/75.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/76.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/76.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/77.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/77.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/78.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/78.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/79.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/79.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/8.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/8.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/80.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/80.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/81.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/81.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/82.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/82.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/83.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/83.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/84.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/84.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/9.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/9.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/b/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/b/main.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/main.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/number.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/number.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage/special.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage/special.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/1.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/1.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/10.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/10.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/11.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/11.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/12.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/12.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/13.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/13.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/14.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/14.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/15.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/15.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/16.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/16.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/17.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/17.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/18.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/18.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/19.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/19.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/2.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/2.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/20.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/20.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/21.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/21.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/22.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/22.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/23.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/23.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/24.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/24.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/25.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/25.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/26.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/26.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/27.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/27.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/28.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/28.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/29.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/29.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/3.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/3.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/30.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/30.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/31.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/31.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/32.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/32.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/33.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/33.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/34.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/34.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/35.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/35.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/36.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/36.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/37.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/37.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/38.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/38.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/39.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/39.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/4.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/4.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/40.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/40.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/41.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/41.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/42.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/42.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/43.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/43.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/44.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/44.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/45.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/45.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/46.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/46.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/47.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/47.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/48.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/48.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/49.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/49.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/5.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/5.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/50.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/50.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/51.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/51.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/52.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/52.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/53.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/53.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/54.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/54.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/55.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/55.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/56.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/56.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/57.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/57.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/58.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/58.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/59.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/59.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/6.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/6.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/60.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/60.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/61.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/61.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/62.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/62.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/63.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/63.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/64.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/64.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/65.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/65.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/66.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/66.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/67.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/67.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/68.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/68.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/69.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/69.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/7.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/7.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/70.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/70.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/71.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/71.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/72.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/72.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/73.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/73.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/74.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/74.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/75.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/75.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/76.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/76.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/77.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/77.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/78.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/78.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/79.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/79.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/8.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/8.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/80.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/80.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/81.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/81.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/82.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/82.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/83.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/83.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/84.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/84.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/9.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/9.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/b/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/b/main.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/main.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/number.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/number.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/convert/to_storage_double/special.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/convert/to_storage_double/special.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/decompose/extract_sign.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/decompose/extract_sign.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/decompose/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/decompose/main.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/divide/branch0.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/divide/branch0.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/divide/branch1.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/divide/branch1.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/divide/branch2.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/divide/branch2.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/divide/branch20.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/divide/branch20.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/divide/branch21.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/divide/branch21.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/divide/branch210.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/divide/branch210.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/divide/branch2100.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/divide/branch2100.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/divide/branch2101.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/divide/branch2101.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/divide/branch2102.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/divide/branch2102.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/divide/branch2103.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/divide/branch2103.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/divide/branch2104.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/divide/branch2104.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/divide/branch2105.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/divide/branch2105.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/divide/branch2106.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/divide/branch2106.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/divide/exception/nan.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/divide/exception/nan.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/divide/exception/overflow.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/divide/exception/overflow.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/divide/exception/underflow.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/divide/exception/underflow.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/divide/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/divide/main.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/multiply/branch0.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/multiply/branch0.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/multiply/branch1.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/multiply/branch1.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/multiply/branch2.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/multiply/branch2.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/multiply/branch20.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/multiply/branch20.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/multiply/branch21.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/multiply/branch21.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/multiply/branch210-higherprecision.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/multiply/branch210-higherprecision.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/multiply/branch210.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/multiply/branch210.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/multiply/branch2100.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/multiply/branch2100.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/multiply/branch2101.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/multiply/branch2101.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/multiply/branch2102.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/multiply/branch2102.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/multiply/branch2103.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/multiply/branch2103.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/multiply/exception/nan.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/multiply/exception/nan.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/multiply/exception/overflow.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/multiply/exception/overflow.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/multiply/exception/underflow.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/multiply/exception/underflow.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/multiply/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/multiply/main.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/negate/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/negate/main.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/recompose/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/recompose/main.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/recompose/replace_sign.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/recompose/replace_sign.mcfunction -------------------------------------------------------------------------------- /data/float/functions/32/subtract/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/32/subtract/main.mcfunction -------------------------------------------------------------------------------- /data/float/functions/setup.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/setup.mcfunction -------------------------------------------------------------------------------- /data/float/functions/uninstall.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/float/functions/uninstall.mcfunction -------------------------------------------------------------------------------- /data/main/functions/setup.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/main/functions/setup.mcfunction -------------------------------------------------------------------------------- /data/main/functions/uninstall.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/main/functions/uninstall.mcfunction -------------------------------------------------------------------------------- /data/unit_tests/functions/extended_float/exponent.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/unit_tests/functions/extended_float/exponent.mcfunction -------------------------------------------------------------------------------- /data/unit_tests/functions/extended_float/float_type.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/unit_tests/functions/extended_float/float_type.mcfunction -------------------------------------------------------------------------------- /data/unit_tests/functions/extended_float/floor.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/unit_tests/functions/extended_float/floor.mcfunction -------------------------------------------------------------------------------- /data/unit_tests/functions/extended_float/power.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/unit_tests/functions/extended_float/power.mcfunction -------------------------------------------------------------------------------- /data/unit_tests/functions/extended_float/truncate.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/unit_tests/functions/extended_float/truncate.mcfunction -------------------------------------------------------------------------------- /data/unit_tests/functions/float/add_numbers.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/unit_tests/functions/float/add_numbers.mcfunction -------------------------------------------------------------------------------- /data/unit_tests/functions/float/check_number_type.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/unit_tests/functions/float/check_number_type.mcfunction -------------------------------------------------------------------------------- /data/unit_tests/functions/float/convert_from_int.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/unit_tests/functions/float/convert_from_int.mcfunction -------------------------------------------------------------------------------- /data/unit_tests/functions/float/convert_to_storage.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/unit_tests/functions/float/convert_to_storage.mcfunction -------------------------------------------------------------------------------- /data/unit_tests/functions/float/decompose.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/unit_tests/functions/float/decompose.mcfunction -------------------------------------------------------------------------------- /data/unit_tests/functions/float/divide_numbers.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/unit_tests/functions/float/divide_numbers.mcfunction -------------------------------------------------------------------------------- /data/unit_tests/functions/float/multiply_numbers.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/unit_tests/functions/float/multiply_numbers.mcfunction -------------------------------------------------------------------------------- /data/unit_tests/functions/float/redecompose.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/unit_tests/functions/float/redecompose.mcfunction -------------------------------------------------------------------------------- /data/unit_tests/functions/init.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/unit_tests/functions/init.mcfunction -------------------------------------------------------------------------------- /data/unit_tests/functions/main.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/unit_tests/functions/main.mcfunction -------------------------------------------------------------------------------- /data/unit_tests/functions/test.mcfunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/data/unit_tests/functions/test.mcfunction -------------------------------------------------------------------------------- /pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanmindev/Hmmm/HEAD/pack.mcmeta --------------------------------------------------------------------------------