The Sidef programming language 23.11

Sidef is a high-level, general-purpose programming language, inspired by Ruby, Perl6 and Go. Main features of the language include: - object-oriented programming - multiple dispatch - metaprogramming - regular expressions - support for using Perl modules - optional dynamic type checking - and a large number of built-in types

Tags programming language development perl programming-language
License Artistic
State stable

Recent Releases

23.1108 Nov 2023 07:42 minor feature: ## Additions - Added the `PolyMod( ... , m)` built-in class. - Added the PolyMod `chinese(...)` method. - Added the Gauss `factor(z)` and `factor_exp(z)` methods. - Added the Gauss `divisors(z)` method. - Added the Number `is_bfsw_psp(n)` method. - Added the Number `totient_range(a,b)` method. - Added the Number `proper_sigma0(n)` method. - Added the Number `proper_divisors(n)` method. - Added the Number `mobius_range(n)` method. - Added the Number `is_deficient(n)` method. - Added the Number `is_amicable(n,m)` method. - Added the Number `linear_congruence(n, r, m)` method. - Added the Number `bphi(n)` method. - Added the Number `iphi(n,k=1)` method. - Added the Number `nuphi(n)` method. - Added several more Polynomial methods. ## Improvements - Optimization in Number `modular_quadratic_formula(a,b,c,m)` when `gcd(2*a, m) == 1`. - Return ealry if input is a prime number in Number `special_factor(n)`. - Extended the Number `aliquot(n)` method to accept an extra argument. - Minor optimization in Number `trial_factor(n,lim)`. - Minor performance improvements in Number `is_powerful(n,k)`. - Optimized Number `is_div(n,k)` for native integers. - Better performance in Number `k.powerful_count(n)` for non-native `n`. - Optimized the Number `divisors(n,k)` method for better performance. - Generalized the Number `phi` and `uphi` methods to accept an extra argument. ## Bug-fixes - Fixed an issue in Number `modular_quadratic_formula(x,y,z,m)` for `x != 1`. - Fixed a minor issue in Number `irand(0,x)`. - Fixed two rare issues in Number `is_almost_prime(n,k)` and `is_omega_prime(n,k)`. - bin/sidef: add to history only words
23.0803 Sep 2023 09:35 minor feature: - Added the `Num!USE_PRIMESUM` class-variable. (disabled by default) - Added the Number `lpf_sum(a,b)` method. - Added the Number `gpf_sum(a,b)` method. - Added the Number `k.squarefree_almost_prime_sum(a,b)` method. - Added the Number `k.almost_prime_sum(a,b)` method. - Added the Number `prime_power_sum(n)` method. - Added the Number `k.omega_prime_sum(a,b)` method. - Added the Number `k.power_count(a,b)` and `k.power_sum(a,b)` methods. - Added the Number `perfect_power_sum(n)` method. - Added the Number `nth_perfect_power(n)` method. - Added the Number `next_perfect_power(n,k=nil)` and `prev_perfect_power(n,k=nil)` methods. - Added the Number `prev_prime_power(n)` method. - Added the Number `n.prev_omega_prime(k=2)` method. - Added the Number `prev_semiprime(n)` method. - Added the Number `prev_almost_prime(n,k)` method. - Added the Number `prev_squarefree(n)` method. - Added the Number `next_squarefree_semiprime(n)` method. - Added the Number `n.prev_powerfree(k=2)` method. - Added the Number `n.prev_powerful(k=2)` method. - Added the Number `n.prev_squarefree_semiprime` method. - Added the Number `n.prev_squarefree_almost_prime(k=2)` method. - Added the Number `nth_nonpowerfree(n,k)` method. - Added the Number `next_nonpowerfree(n,k=2)` and `prev_nonpowerfree(n,k=2)` methods. - Added the Number `muladdmulmod(a, b, c, d, m)` and `mulsubmulmod(a, b, c, d, m)` methods. - Added the Number `muladdmod(a,b,c,m)`, `mulsubmod(a,b,c,m)` and `submulmod(a,b,c,m)` methods. - Added several `cube_*` and `cubefree_*` aliases for `3.power_*` and `3.powerfree_`. - Added the FileHandle `.rewind` method. - Added the String `.codes` method. - Added the Range `.sort a,b ... ` and `.sort_by v ... ` methods.
22.1202 Dec 2022 19:41 minor feature: Added the parser floating-point f suffix for literal numbers. (81b0991) Added support for using native integers in arithmetic operations (when possible). (cc5638b) Added the Array .solve_rec_seq method. (9a7e3d7) Added the Math .solve_seq(array, offset=0) and .solve_rec_seq(array) methods. (9a7e3d7) Added the Math .linear_recurrence(ker, init, n) method. (a45fe51) Added the Math .linear_recmod(ker, init, n, m) method. (51c4688) Added the Number phi_finder_factor(n, tries=1e4) method. (2605b84) Added the Number k.carmichael(a, b) method. (a884fcb) Added the Number k.lucas_carmichael(a,b) method. (a884fcb) Added the Number k.squarefree_fermat_psp(base, a,b) method. (a884fcb) Added the Number k.carmichael_each(a,b, ... ) method. (c53381a) Added the Number k.lucas_carmichael_each(a,b, ... ) method. (c53381a) Added the Number k.squarefree_fermat_psp_each(base,a,b, ... ) method. (c53381a) Added the Number k.fermat_psp(base, A, B) and k.fermat_psp_each(base, A, B, ... ) methods. (9437e8f) Added the Number k.squarefree_strong_fermat_psp(base, a, b) method. (c68292a) Added the Number k.carmichael_strong_fermat(base, from, upto) method. (7c9961c) Added the Number k.carmichael_strong_fermat_each(base, from, upto, ... ) method. (a6376ee) Added the Number k.each_squarefree_strong_fermat_psp(base, from, upto, ... ) method. (d3108eb) Added the Number k.strong_fermat_psp(base, from, upto) method. (e98114d) Added the Number k.each_strong_fermat_psp(base, from, upto, ... ) method. (277f5d4) Added the Number x.is_float method. (e85866d) Added the Number aliquot(n) method. (c1f16a8) Added the Number prev_composite(n) method. (6045096) Added the Number n.prev_primes(start) method. (1d76f26) Added the Number n.prev_composites(start) method. (cfb857a) Added the Number fld, cld, trd and rdd aliases for idiv_floor, idiv_ceil, idiv_trunc and idiv_round. (76f8d8f) Added the N
22.0716 Jul 2022 17:41 minor feature: Added the Number special_factors(n, tries=1) method. (272ec42) Added the Number gcd_factors(n, a,b,c,... ) method. (ef7938a) Added the Number pell_factor(n, tries=1e5) method. (f6c4333) Added the Number cyclotomic_factor(n, bases...) method. (39ba86f) Added the Number is_perfect(n) method. (9c4c74f) Added the Number n.is_squarefree_almost_prime(k=2) method. (1a7812a) Added the Number composite_lower(n) and composite_upper(n) methods. (6c48130) Added the Number composite_count_lower(n) and composite_count_upper(n) methods. (dc92b4c) Added the Number prime_power_lower(n) and prime_power_upper(n) methods. (2d5efab) Added the Number prime_power_count_lower(n) and prime_power_count_upper(n) methods. (f884606) Added the Number nth_omega_prime(n,k=2) method. (bbc8923) Added the Number nth_almost_prime(n, k=2) method. (3d61414) Added the Number nth_squarefree_almost_prime(n, k=2) method. (271fcdb) Added the Number nth_powerful(n,k=2) method. (7d8d695, e1180f3) Added the Number nth_prime_power(n) method. (9e4b34e) Added the Number nth_squarefree(n) method. (03006f7) Added the Number nth_powerfree(n,k=2) method. (5eb73f1) Added the Number next_powerfree(n,k=2) method. (5485e84) Added the Number next_squarefree_almost_prime(n,k=2) method. (f1c30f5) Added the Number next_omega_prime(n,k=2) method. (6023b93) Added the Number next_semiprime(n) method. (4295892) Added the Number next_almost_prime(n,k=2) method. (9608c7f, 8a45f5f) Added the Number next_powerful(n,k=2) method. (79c5c5a) Added the Number next_prime_power(n) method. (764eab5) Added the Number k.smooth_divisors(n) and k.rough_divisors(n) methods. (bee1d25) Added the Number prime_powers(a,b) and prime_powers_each(a,b, ... ) methods. (ae687b8) Added the Math.seq(a, b, c, ..., ... ) method. (0fd19d4, 277fe12) Added the Math.binary_exp(c,x,n, a,b ... ) method. (57845ba)
3.9903 Sep 2021 05:25 minor feature: Added the Polynomial built-in class. (e8fdf45, 7f71257, 5db0b7d). Added the Fraction(a,b) built-in class. (a7a9bd7). Added the Number sqrtmod_all(a, n) method. (28f024a). Added the Number hclassno(n) method. (a0a89e8). Added the Number k.powerfree_part_sum(a,b) method. (fc79ca7). Added the Number k.powerfree_part(n) method. (46a3ee7). Added the Number k.powerfree_sum(a,b) method. (74f03ed). Added the Number n.is_powerfree(k=2) method. (c17985c). Added the Number k.powerfree_count(a,b) method. (833629f). Added the Number power_divisors(n, k=nil) method. (47628b3). Added the Number power_udivisors(n, k=nil) method. (39d27de). Added the Number cube(x) method. (cc3792c). Added the Number squares_r(n,k=2) method. (70db758, 335b29f, 6e88d02). Added the Number fusc(n) method. (edd22c6, d09a899). Added the Number rotate(n,k,b=10) method. (362483b). Added the Number chebyshevTmod(n,x,m) and chebyshevUmod(n,x,m) methods. (5da6959). Added the Number each_composite(a,b, ... ) and composites(a,b) methods. (c95a14c, ab16883). Added the Number n.prime_lower and n.prime_upper methods. (9df78d7). Added the Number sqrt_cfrac_period_each ... method. (ea9f942). Added the Number faulhaber_range(a, b, k) method. (99e7ca4). Added the Enumerator.count ... method. (3f568c1). Added the Enumerator.while ... method. (1ed3dd9). Added the RangeNumber composites(a..b) method. (d043243). Added the RangeNumber each_composite(a..b, ... ) method. (c95a14c). Added the Lazy.while ... method. (67c4921). Extended some Number methods to return a Polynomial object when x is omitted. (1e624c0, ff0ac89). Extended the Number sigma(n, k) method to support negative k. (00f083f). Extended the Number squarefree_sum method to accept two arguments. (74f03ed). Extended the Array.contains method to accept an arbitary long list of objects. (453ed55). Extended the Enumerator.first method, to support an optional Block. (b5a12c8). Minor performance improvements and simplifications in the Number class. (54bc
3.9827 Mar 2021 07:25 minor feature: Added the Quaternion built-in class. (2997caf). Added the Number n.omega_prime_divisors(k) method. (6737ed3). Added the Number n.almost_prime_divisors(k) method. (a8cc27e). Added the Number k.squarefree_almost_prime_count(a,b). (a236a25). Added the Number k.omega_prime_count(a, b) method. (fa39c4f). Added the Number n.is_omega_prime(k) method. (b8a2dbd). Added the Number k.omega_primes_each(a, b, ... ) method. (ef78c06). Added the Number k.omega_primes(a,b) method. (d496230). Added the Number k.powerful_each(lo, hi, ... ) method. (756bab0). Added the Number k.squarefree_almost_primes_each(a, b, ... ) method. (0a48608). Added the Number k.squarefree_almost_primes(a, b) method. (3ff722f). Added the Number k.almost_primes(lo, hi) method. (7cd0365). Added the Number k.almost_primes_each(lo, hi, ... ) method. (7cd0365). Added the Number n_composites(n, start=4) method. (c3033ad). Added the Number sum_remainders(n, v) method. (ad38eef). Added the Number legendre_phi(n,k) method. (a6132f4). Added the Number expnorm(n, base=10) method. (5a95197). Added the Number semiprimes(from, to) method. (b0fafa6). Added the Number each_semiprime(from, to, ... ) method. (b0fafa6). Added the Number inverse_ phi,psi,sigma _ min,max methods. (8797a95). Added the Number squarefree_sum(n) method. (775e7cb). Added the Number is_fibonacci(n) method. (6b7d75f). Added the Number is_lucas(n) method. (f301a82). Added the Number idiv_round(a,b) method. (f4f6303). Added the Number idiv_ceil(a,b) and idiv_trunc(a,b) methods. (c0b36a0). Added the RangeNumber.each_squarefree_almost_prime(k, ... ) method. (14cd46e). Added the RangeNumber.each_omega_prime(k, ... ) method. (f336387). Added the RangeNumber semiprimes(a..b) method. (5dc1ad9). Added the RangeNumber squarefree(a..b) method. (d495066). Added the RangeNumber.each_semiprime k say k ) method. (c183762). Added the RangeNumber.each_almost_prime(k, ... ) method. (89a23e4). Added the RangeNumber.each_powerful(k, ... ) method. (f72c
3.97.122 Jan 2021 18:45 minor feature: a typo that caused compilation-failures on perl 5.32. (912e27e). For better consistency, use mpz_div everywhere (same as mpz_fdiv_q), instead of mpz_tdiv_q. (8eaa5bf). The Number inverse_usigma(n) and inverse_uphi(n) with Math::Prime::Util 0.74. (53d97f4, bb1c7a4).
3.9718 Jan 2021 07:45 minor feature: Added the Quadratic(a, b, w) built-in class. (aab0cef). New octal syntax 0oddddd, in addition to 0ddddd. (9d0d882). Added the Number flt_factor(n, tries=1e4) method. (d52bb1f, d71de37). Added the Number sopf(n) method. (b72282a). Added the Number n_primes(n, start=2) method. (24ec447). Added the Number is_practical(n) method. (aec0125). Added the Number inverse_psi_len(n) method. (91b851f). Added the Number inverse_sigma_len(n,k=1) method. (91b851f). Added the Number inverse_uphi(n) method. (72979b7). Added the Number inverse_psi(n) method. (2caa727). Added the Number inverse_usigma(n) method. (8ede5f3, 0b6a52d). Added the Number ratmod(r,m) method. (46b7315). Added the Number addmod(a,b,m), submod(a,b,m), mulmod(a,b,m) and divmod(a,b,m) methods. (0ce927b). Added the Number miller_factor(n, tries=100) method. (cd9d3ce). Added the Number lucas_factor(n, j=1, tries=100). method. (2d91cf5, 0207a89). Added the Number is_imprimitive_carmichael(n) method. (d435c38). Added the Number is_lucasU_psp(n, P, Q) and is_lucasV_psp(n, P, Q). (a32f812). Added the Number n.is_odd_composite method. (a32f812). Added the Number is_overpseudoprime(n, b=2) method. (2468b01). Added the Number quadratic_nonresidue(n) method. (725721c). Added the Number rough_part(n,k) method. (d14d1a8). Added the Number smooth_part(n,k) method. (91444b8). Added the Number superprimorial(n) method. (f31109e). Added the Number core(n) method. (c6223a2). Added the Math.binsplit(block, arr...) method. (f542064). Added the String parse_quotewords(str, delim, keep) method. (eb1b5f6). Added several String methods provided by Text::Balanced. (176bac8). Added the Matrix A.invmod(m) method. (00a2187). Added the Math.smooth_numbers(primes...) method. (b686cc8). Added support for parsing complex numbers in Cartesian form. (ac5cddc). Added the Gauss ratmod(n,m) method. (b71808b). Minor optimization in Number is_safe_prime(n) method. (08008d6). Allow built-in classes to be redefined with extra parameters. (bee6726, 56bc
3.9621 Jul 2020 03:15 minor feature: Added the built-in Mod(a,m) class. (af1b3f8, 83b884e). Added the built-in Gauss(re,im) class. (694413d 0895026, be5317f). Added the Number power_count(n) method. (36501ec). Added the Number next_twin_prime(n). (946c5e9). Added the Number next_palindrome(n, b=10) method. (2ffe027). Added the Number random_safe_prime(bits) method. (a0b952e). Added the Number is_gaussian_prime(a,b) method. (1b974b7). Added the Number is_rough(n,k) method. (a89eb79). Added the Number rough_count(n,k) method. (5a543a2). Added the Number is_safe_prime(n) method. (577bb5a). Added the Number smooth_count(n,k) method. (fafc653, 4b6154c). Added the Number is_almost_prime(n,k) method. (cbaaf31). Added the Number almost_prime_count(n,k) method. (c46ec44). Added the Number dirichlet_hyperbola(n, f, g, F, G) method. (8dd95d4). Added the Number bsearch_min(a,b, ... ) method. (2f21cbf). Added the Number uphi(n) method. (5da361e). Added the Array.differences(n=1) method. (1f12152). Added the Date.valid_date(string, format) method. (355be4b). Added Unicode aliases for some number methods. (d28d575). Optimizations in faulhaber_sum(n,k). (e38aeba, c69551a). Optimizations in Number is_powerful(n,k) for large n. (13686f9). Optimizations in Number digits2num(base, digits). (6705e35). Prefer Math::Prime::Util::mertens(n) if available. (71a7c49). Minor simplifications inside the Optimizer. (c836155). Extended Number powmod(b, n, m) to support rational bases b. (7623a5d). Reduced overhead in some Number methods. (4375637). Removed the Number modinv alias for invmod. (a8b1397). Support conversion of Bool values to Number. (b26bda8).
3.9523 Mar 2020 11:05 minor feature: Added the Date built-in type, to work with dates. (9399bbc). Added support for scalar context, provided by the unary + operator. (09dc805). Added the Number is_cyclic(n) method. (37b82a7). Added the Number n.primitive_part(f) method. (634a98a, 5f4ff4e). Added the Number powerful(n,k=2) method. (88c7fc9). Added the Number powerful_count(n, k=2) method. (b4385e6). Added the Number each_prime(from, to, ... ) method. (8bd9252). Added the Number bits(n) method, which returns the binary digits of n. (9b74dc9). Added the Number squarefree(from, to) method. (9146ec4). Added the Number each_squarefree(from, to, ... ) method. (9146ec4). Added the Range each_slice, each_cons, map_slice and map_cons methods. (08a79a7). Added the behavior of -w and -W in the generated code. (826c769). Optimizations in each_slice, each_cons, map_slice and map_cons. (08a79a7, dca04b0). Faster algorithm in Number make_coprime(a,b). (59ba2a9). Minor simplifications in the Number class. (be22ed5). Minor performance improvements in Number is_lucas_carmichael(n). (b2d02a2). Minor internal optimization in the creation of Hash objects. (08f1d49). Slightly better performance in Number trial_factor(n,k). (9e51c91, 9a7c252). Extended the Number.is_powerful to accept an optional argument. (a9ee071). Extended the modular Lucas sequences U_n(P, Q) and V_n(P, Q) to support arbitrarily large P and Q. (7495f39). Changed the Array , , and - operators. (805f2c3). a minor in String num. (7c56b11). Minor in the parsing of the ternary operator. (3dadcab). Allow premethod-calls in class has variables. (98fdc39). UTF-8 encoding/decoding in File and Dir classes. (e967c94).
3.9026 Dec 2019 07:45 minor feature: Added the Array.run_length method. (b5a7558). Added the Array.segment_by ... method. (968c96f). Added the Array.all_prime and.all_composite methods. (efdddd2). Added the Array.split(obj) method. (baf967d). Added the Array.join_insert(obj) method. (131b84b). Added the Array.next_permutation method. (8df2909). Added the Array.unique_permutations method. (8df2909, 5f5b9e6). Added the Block sum and prod methods. (17ef14b). Added the Block compose(f,g) method (also aliased as and ) (f9298eb, 972ef55). Added the Number nth_semiprime(n) method. (680509c). Added the Number semiprime_count(n) method. (887fd3e). Added the Number is_pell_lucas_pseudoprime(n) method. (b856992). Added the Number is_pell_pseudoprime(n) method. (8d8dd7a). Added the Number is_bruckman_lucas_pseudoprime(n) method. (e8f21d0). Added the Number is_strong_fibonacci_pseudoprime(n) method. (cf7cd20). Added the Number is_lucas_carmichael(n) method. (f0926c2). Added the Number is_chebyshev_pseudoprime(n) method. (c50c51f). Added the Number is_palindrome(n, b=10) method. (5219b68). Added the Number is_super_pseudoprime(n, *bases) method. (ce55a1a). Added the Number motzkin(n) method. (a512c2f, c1b53bc). Added the Number n.first ... method. (e2a1e94). Added the Number next_composite(n) method. (bd5ddc7). Added the Number reverse(n, b=10) method. (0bba2b2, 37bf7e4). Added the Number all_prime(...) and all_composite(...) methods. (efdddd2). Added the Number bsearch_inverse(min, max, x f(x) value ) method. (8573002). Added the Number inverse_sigma(n) method. (17682d7, ec6590f). Added the Number liouville_sum(n) function. (31d1e6d). Added the Number is_abundant(n) method. (2135860). Added the Number nth_composite(n) and composite_count(n) methods. (5029ecb). Added the RangeNum lcm, lcm_by ... , gcd and gcd_by ... methods. (845e61c). Added the Sys.kill() method, to kill a list of precesses. (ff99285). Added the approximate comparison operator (alias for approx_cmp). (7f9680f). Redirected phi(n) to eu
3.8519 Aug 2019 06:45 minor feature: Added several String testing methods. (814089e). Added the Array.map_slice(k, ... ) method. (a285367). Added the Array.cfrac2num method. (abcbcbe). Added the Array.sum_2d and.prod_2d methods. (420b0cf). Added the RangeNum primes method. (a4a6c6a, 5eff247). Added the DirHandle.files and.dirs methods. (2485904). Added the Bag.map_kv ... and.grep_kv ... methods. (98614cd). Added the Set.sum.sum_by and.sum_2d methods. (420b0cf). Added the Set.prod.prod_by and.prod_2d methods. (420b0cf). Added the Number pn_primes(n) method. (a4815ce). Added the Number.is_power_of(b), where b is a given base. (18155b3). Added the Number primality_pretest(n) method. (23b911f). Added the Number primorial_inflation(n) and primorial_deflation(n) methods. (6529f3e). Faster (subquadratic-time) algorithm in Number.digits(base). (4d7b666). Faster (subquadratic-time) algorithm in Number.sumdigits(base). (2f98913). Faster (subquadratic-time) algorithm in Array.digits2num(base). (70f6e47). Better performance in Number n.trial_factor(k) for many large n and k. (defdbc8). Performance improvements in Number lpf(n). (66200dc). Slightly faster conversion of integer strings into numbers. (9e805cf). Allow numbers to be separated by commas in n(...) and i(...). (5068296). Extended the Number length method to accept an optional base. (19c8576). Extended the Number divisors method accept an optional argument. (668a205). Extended the Number.is_prob_squarefree method to accept an optional argument. (a0e6d24). Added a fast primality pretest for large values of n passed to is_prime. (9ad6ed3, 384cf3e). the Array.flat method to support cyclic references. (c1e7471). Backtrack whitespace after parsing of an import statement. (2a9e784). the position of the pointer in some parser-error messages. (890ed44, 0d1dc25).
3.8019 May 2019 11:25 minor feature: Added the Number lpf(n) and gpf(n) methods. (b0114f6). Added the Number fermat_factor(n, k=1e4) method. (e1e5781). Added the Number is_prob_squarefree(n, k) method. (d4b422b). Added the Number is_composite(n) method. (7d9bc24). Added the Number is_fibonacci_pseudoprime(n). (b8379ca). Added the Number is_perrin_pseudoprime(n). (a9ebae8). Added the Number is_cube(n) method. (ec291e4). Added the Number numify(n) method. (269a6b3). Added the Number dirichlet_convolution(n, f, g) method. (33468e5, b467a89). Added support for obj.SUPER::method_name(), which calls the parent method. (4671217). Added the Set and Bag.each_2d ... .map_2d ... and.grep_2d ... methods. (b9a1c45). Added the Array.each_2d ... .map_2d ... and.grep_2d ... methods.. (4713948, 4193637). Added the Array.stack_by ... method. (41c29ad). Added the Array.split(indices...) method. (3c9a230). Added the Array.avg and.avg_by ... methods. (cac72ec, 2512a40). Allow definition of typeless subsets. (839dad8). Support for slurpy define, static and const declarations. (1a4f63c, 0ddb798, d8135cc). Support for using an earlier declared variable in const, static and define declarations. (ab3fdba). Simpler Perl deparsing of const declarations. (d4c6170). Better deparsing of subset blocks. (0eda2cf). Improved the error messages for return types. (e60ad3f). Included the namespace in the name of functions. (67d7b6f). Better parsing and deparsing of the try/catch construct. (ee0de4e). Added default Block identities for Set,Bag map and grep methods. (f28b296). Extended Number sqrt_cfrac(n) to accept an optional argument. (d68c4e8). Added a lookup table in the Number mertens(n) function for n = 10 k. (d3092e6). Allow struct entries to be delimited by newlines (in addition to commas). (604c40f, f495bf6). Enabled STDOUT autoflush by default. (c623be0). Interactive mode: allow tabs to be used for identation. (9a34c3d). Stricter localization of function declarations. (4a9f6d2, 0eda2cf). Create the multimethods in the exa
3.7025 Mar 2019 07:45 minor feature: Added the Number sqrt_cfrac_period_len(n) method. (96931df). Added the Number faulhaber_polynomial(n,x) for integer n =0 and any x. (fac65fd). Added the Number n.th ... method. (0b1b84e). Added the Lazy.nth(n) method. (ff6cef3). Added the Block.nth(n, range) method. (26307de). Added the Block.first(n, range ) method. (28b8ff9). Added the Array digits2num(arr, base) method. (a0c5beb). Added the Array.sum_kv k,v ... and.prod_kv k,v ... methods. (5cae375). Added the Regex gmatches methods. (3fd44e6). Added the Regex concat and union methods. (5740d21, 1f10474). Added the Object methods is_object and is_typename. (5b08093). Added the Vector pow method. (f46fdbc). Added the Matrix vector_rows and vector_columns methods. (83c5fc9). Added the NamedParam contructor to create named-parameter objects. (873db3c). Added the aliases and in the Array, Set and Bag classes. (c972b0a). Added the __COMPILED__ and __OPTIMIZED__ boolean parser-keywords. (c613d8a, 070dd43). Optimizations in String apply_escapes for very long strings. (ebd6334). Optimization in Number arithmetic_derivative(n) for numbers with high prime-powers. (6ca0704). Better deparsing of class names. (b2c5ce8). Support return of multiple values from the try/catch construct. (9cdcaa4). Allow commas to be used in v(...). (e7ea8a1). Use a much faster algorithm in Number mertens(n). (42064b5, bb3ccc9). Extended the cache in Number prime(n) up to n = 10 6. (4555063). Added a lookup table in Number nth_prime(n) for n = 10 k. (513dee5). Added a lookup table for powers of 10 in Number prime_count(n). (15f8a30, cc9d0fc). Optimization in Number prime_power_count(a, b) for b - a 10 6. (84fc603). Split Range count_by and accumulate_by in separate methods. (e7db649). Extended Object.methods() to accept default arguments. (3fbdcba). Simplifications in Array and RangeNum.sum and.prod methods. (4d785a6). Allow functions to be provided wherever a block was previously required. (be7670a). Extended the Array.first(n) a
3.6007 Jan 2019 03:15 minor feature: Added the Vector built-in class. (858b6a4, 3602614, de75a77). Added the v(...) and m(...;...) special tokens for creating a Vector or a Matrix. (5e79ebf). Added the experimental pipeline operator . (2eecf31, af4cca0, 53a5b73). Added the Array pipeline cross-product operator X . (d130fb9, 20c9ec9, 1101be3, 1a4a80a). Added the Array pipeline zip operator Z . (9ff9150). Added the Array and Range.none ... method. (d70da6b). Added the Array.map_reduce a,b ... method. (7442459, e2f2482). Added the Range accumulate and accumulate_by methods. (7dbd0d4). Added the Number is_between(n, min, max) method. (c6c7d96). Added the Number mertens(a, b) method. (2ad5ad5, 3f211d8). Added the Number is_smooth_over_prod(n, k) method. (4e53852). Added the Number prime_power_count(a, b) method. (606b32a). Added the Number polygonal_inverse(n) method. (4e7f0b8). Added the Number sum_primes(a,b) and inverse_totient_len(n) methods. (8b0d5cf). Added the Number.factor_map ... and.divisor_map ... methods. (c231000). Added the Number sum(...) and prod(...) methods. (7bfdefd). Added the Number kronecker_delta(a, b) method (aliased as δ(a, b)). (5777769). Added the Matrix.map v,i,j ... method to map the values of a matrix. (2e012ce). Added the Matrix abs and neg entrywise methods. (db12040). Added the Matrix t and pre aliases for transpose. (c471df3). Added the String run method. (1a48166). Added support for deleting variables from the current scope. (Python-like) (0f99842). Reimplemented the support for modules in a better way. (e745386). Implemented support for class slurpy has attributes. (dfc0c0f). Much faster algorithm in Number is_smooth(n,k). (4e53852). Extended Hash.concat() to work with non-hash arguments. (534ffdc). Allow typenames to be used with the smartmatch operator. (e50bb56). Included the namespace of variables in the Did you mean? message. (247e76d). Cached the bernoulli(n) function for input values of n
3.5014 Oct 2018 03:15 minor feature: Added the built-in Set(...) class. (86696c3). Added the built-in Bag(...) class. (56e9b15). Added the built-in Matrix(...) class. (0ecfd31). Added the Array.combine ... method. (34a5ab7). Added the Array gcd(), gcd_by ... , lcm() and lcm_by ... methods. (60d9044). Added the Number bit_scan0(n,k), bit_scan1(n,k) and hamdist(n,m) methods. (b6cde74). Allow whitespace and comments between if/elsif/else branches. (f9c8be2). Minor optimization in Number square_sigma(n, k). (30ed913). Optimization in Number nth_prime(n) for large values of n. (2e5562c). Extended the Number catalan method to support an additional argument. (b397996). Speed-up in Number fibmod(n, m) and lucasmod(n, m). (a4d5f24). Allow an optional plus sign in front of a fraction or integer in a base != 10. (3dbd844). Re-implemented the Number gcdext(n, k) method, using Math::GMPz. (6ba5ccd). Extended Number gcd() and lcm() to support an arbitrary number of arguments. (befafda). Added constant-folding support for the value assigned to const and define constants. (d8bec4c). Number square_sigma0(n) to be able to return arbitrary large integers. (10ec737).
3.1901 Aug 2018 14:05 minor feature: Added the String s.rotate(n) method. (4e76b98). Added the Number dedekind_psi(n, k) method. (e345b1b). Added the Number is_powerful(n) method. (fadb79a). Added the Number is_congruent(n, k, m) method. (8e45439). Added the Number prime_divisors(n) method. (ed1700b). Added the Number prime_udivisors method. (f019b8d). Added the Number prime_power_divisors(n) method. (15b960b). Added the Number prime_power_udivisors(n) method. (c548f17). Added the Number square_divisors(n) method. (533e927). Added the Number square_udivisors(n) method. (b9c0f15). Added the Number squarefree_divisors(n) method. (ee7010a). Added the Number squarefree_udivisors(n) method. (6fec76e). Added the Number prime_sigma(n, k) method. (5e9bc5b). Added the Number prime_usigma(n, k) method. (5e9bc5b). Added the Number prime_power_sigma(n, k) method. (d58c77a). Added the Number prime_power_usigma(n, k) method. (c5b0ed5). Added the Number square_sigma(n, k) method. (dffe2e4). Added the Number square_usigma(n, k) method. (3ec7857). Added the Number squarefree_sigma(n, k) method. (7270aab). Added the Number squarefree_usigma(n, k) method. (7ce0273). Added the Number methods: msb(n) and lsb(n). (09c8d65). Extended the String strip(), strip_left() and strip_right() methods. (cd8ef4b). Added constant-folding support for File("...") and Dir("...") (at -O1). (75a20ff). Minor optimization in sqrt(n) and log(n) for negative real values of n. (ab296de). Minor optimization in the comparison and equality checking of objects of the same type. (7142929). Extended sqrtmod(a, n) method to work with composite numbers n. (acb3edf, 0f97de2). Allow a nil value as an argument to a for-in loop. (df8862e). Use dynamical constants in all blocks. (0707150). Always return a fraction-string from Number.base() when the number is a fraction. (d8de05d). Minor in the deparsing of complex number with special values, such as Inf, -Inf or NaN. (3d93c5c).
3.1805 Jul 2018 03:16 minor feature: Added support for array-like indexing on strings. (925b3cf). Added the Number usigma(n, k) and usigma0(n) methods. (85aa07c). Added the Number udivisors(n) method (unitary divisors of n). (ed3ad9c, 81d7ebc). Added the Number ramanujan_sum(n, k) method. (db809e0). Added the Number fibmod(n,m) and lucasmod(n,m) methods. (2ec17c8, 33379b3). Added the Number cyclotomic_polynomial(n, x) method. (c02de4f). Added the Number secant_number(n) and tangent_number(n) methods. (8420101, ba50aa1). Added the Number chebyshevT(n, x) and chebyshevU(n, x) methods. (c6bd296). Added the Number HermiteH(n, x) and HermiteHe(n, x) methods. (8c795b0, 7d8af33). Added the Number legendreP(n, x) method, which are the Legendre polynomials. (5e198a0). Added the Number laguerreL(n, x) method, which are the Laguerre polynomials. (0f4ca50). Added the Array matrix_pow method (also aliased as mpow and ). (1fdc91c, 5992c47). Minor optimization in Number prime_root(n). (56246a9). Optimization: create the assertion error message only when the assertion fails. (873020d). Optimization: use more direct binary splitting in the Number class. (c26ea5e). a minor in Hash eq and same_keys methods. (8feb768, 82e895c).
3.1731 May 2018 06:05 minor feature: Added the Array.rref() method (reduced row echelon form). (1f77458). Added the Array.gauss_jordan_invert() method (matrix inversion). (1f77458). Added the Array.gauss_jordan_solve(v) method (solution to a system of linear equations). (1f77458). Added the Number methods: bsearch, bsearch_le and bsearch_ge. (e09e762). Added Number lnbernreal(n) method (also aliased as lnbern(n)). (a4fcb28). Added the Number hyperfactorial(n) method. (1ef0b40). Added the Number lnsuperfactorial(n) and lnhyperfactorial(n) methods. (15d9296, 5c1ae7c). Added the Number bernoulli_polynomial(n, k) method. (53802c2, a0a7cdc). Added the Number catalan(n) to return the n-th Catalan number. (59f1ac2). Added the Array.map_cons(n, ... ) method. (28f0ab1). Added the Number euler_number(n) method. (2c6f883). Added the euler_polynomial(n, x) Number method. (c5c76bd, 7e7a966). Added the Number geometric_sum(n, r) method. (b2c1f89, 4248165). Added the Number methods quadratic_formula(a,b,c) and iquadratic_formula(a,b,c). (9480b35). Added the Number solve_pell(d, n) method to solve a generalized Pell equation. (f91e039). Added the Number methods: approx_cmp, approx_lt, approx_le, approx_gt, approx_ge and approx_ne. (918d1ad). Extended the optimizations in Number digits(n, b) and sumdigits(n, b). (c85a90e). Extended the base number up to 62 in Number base(n, b), as_int(n, b) and as_frac(n, b). (c85a90e). Optimization in Numberperfect_root(n) (11db384). Various optimizations in the Perl deparser. (ec45264). Optimized faulhaber_sum(n, k) to use the tangent numbers to compute the Bernoulli numbers. (b4484a7). Extended the Number float(x) method to convert x to any floating-point number, either real or complex (in this order). (0e32c24). Renamed the Catalan constant from Num.catalan to Num.CatalanG. (b36cd44, ee2e120). Changed the boolification of NaN from true to false. (9189641).
3.1606 May 2018 07:05 minor feature:
3.1518 Feb 2018 03:17 minor feature: Number multinomial(a, b, c...) (df33a59) arithmetic_derivative(n) (c6b7fc3) sqrt_cfrac(n) (2859ad0, 76474c1) subfactorial(n, k=0) (18d91e3, 43c02c6) . multinomial(a, b, c...) (df33a59). arithmetic_derivative(n) (c6b7fc3). sqrt_cfrac(n) (2859ad0, 76474c1). subfactorial(n, k=0) (18d91e3, 43c02c6). Array. .accumulate() (8072a0b). .accumulate_by (6cd6e58). .shift_while (0b77fe8). .pop_while (0b77fe8). .indices_by (7bc32b8). .bsearch (a8b87fe). .bsearch_le (a8b87fe). .bsearch_ge (a8b87fe). .bindex_le (a8b87fe). .bindex_ge (a8b87fe). . .accumulate() (8072a0b). .accumulate_by (6cd6e58). .shift_while (0b77fe8). .pop_while (0b77fe8). .indices_by (7bc32b8). .bsearch (a8b87fe). .bsearch_le (a8b87fe). .bsearch_ge (a8b87fe). .bindex_le (a8b87fe). .bindex_ge (a8b87fe). Hash. .collect (47bb3e3). . .collect (47bb3e3). Lazy. .first_by (bcc96b8). . .first_by (bcc96b8). String. .encode_base64() (b240ad7). .decode_base64() (b240ad7). . .encode_base64() (b240ad7). .decode_base64() (b240ad7). Support for one-line nested for-in loops (same as in Julia). (67f7105, 514bd8e, f1c6794). Using mpfr_beta() when mpfr-4.0.0 is available. (4cfa15e). Using mpfr_z_sub() when mpfr = 3.1.0 is available. (f2f52fb). Extended Lazy.first() to return the first item when no argument is provided. (f157ae3). Extended Number.complex() to accept an optional argument. (3f33c77). Switched to Hurwitz expansion for complex numbers in Number.as_cfrac(). (0ebb66f). Reimplemented Number.rat_approx() for much better performance ( 3x faster). (3e488c8). Using a more efficient algorithm in Number.convergents(). (608aafc). More efficient algorithm in computing the n-th Bell number in Number.bell(). (baa5ce9). Minor simplification/optimization in Number.digits() when the base is not specified. (3099ee7). Better performance in Array and RangeNumber prod() and prod_by() methods. (9ddade5). Binary splitting in Array.sum(), Array.sum_by , Math.lcm() and Range.sum_
3.1009 Dec 2017 14:05 minor feature: Simplified the Number.times method. (38509f6). Simplifications and optimizations in the Number class. (339354f, 8043705, 79898a5). 60x faster decimal-expansion of a fraction, in Number __stringify__(). (9f8d838). Sieve the primes with a variable step in Number.nth_prime(). (86801d9). Optimized the RangeNum.sum() to use a -form expression for all ranges. (3dc5a89). Unified the for-in loop with the Block iterators map, each and grep. (87490e4). Reimplemented Number.prime_count() for better performance. (69b06b3, 9a16d87, 4c9d965). Extended the unary dot operator to allow array and hash lookup (same as in Perl 6). (9e0551b). Reimplemented Number.digit() and Number.digits() to support arbitrary large bases. (a47cf65, 4c041d9, ab09256, 7d1bec5). Removed the built-in MultiArray class. (8f4528d). polygonal_root(n, NaN) to return NaN instead of n. (c24158a). Extended the Array eq and cmp methods to support cyclic references. (1bd9f0a, 1de91f9). Extended the Hash eq method to support cyclic references. (69fd70a).
3.0504 Nov 2017 22:45 minor feature: Optimization for numerical ranges ( 2.4x faster). (dfb7b89, e2618e8). Minor optimization in Number polygonal(n, k). (caa65aa). Simplified and optimized the generated for the for-in loop. (195dc18). Optimized the Number eta(n) function for native unsigned integer values. (14ef4df). Optimized the Number methods is_div(n, k) and k.divides(n). (a245ca3). Reimplemented the Number next_power(n, k) method to support arbitrary large integers. (2ec1bf1). Renamed Sidef::Convert::Convert to Sidef::Object::Convert and is now used as a parent by Sidef::Object::Object. (6fbeb14). the numification of integers to the integer limits. (04a5b41, 42199ba, 8a14be4). Block scoped variables will now keep their scope in compiled code as well. (e27030c). __sub__(Math::GMPz, Math::MPFR) now does correct rounding in all cases. (6741de3). the intification of values to the integer limits, inside the Perl deparser. (dfb7b89). the objectification of the value returned by Math::Prime::Util::GMP::chinese(). (27e3133).
3.0406 Oct 2017 10:05 minor feature: Number Convergents(n, k) (9ac40d6) Faulhaber_sum(n, k) (d43ac9f) Polygonal(n, k) (e6e499d) Polygonal_root(n, k) (de23455) Polygonal_root2(n, k) (f604bed) Ipolygonal_root(n, k) (e6e499d) Ipolygonal_root2(n, k) (f604bed) Is_polygonal(n, k) (e6e499d) Is_polygonal2(n, k) (f604bed) . Convergents(n, k) (9ac40d6). Faulhaber_sum(n, k) (d43ac9f). Polygonal(n, k) (e6e499d). Polygonal_root(n, k) (de23455). Polygonal_root2(n, k) (f604bed). Ipolygonal_root(n, k) (e6e499d). Ipolygonal_root2(n, k) (f604bed). Is_polygonal(n, k) (e6e499d). Is_polygonal2(n, k) (f604bed). Array. .zip_by ... (ddec3bf). .unzip_by ... (fea9d55). .extract_by ... (f922d6e). .extract_first_by ... (f8de4a2). .extract_last_by ... (f8de4a2). .weighted_shuffle_by ... (688a57a). . .zip_by ... (ddec3bf). .unzip_by ... (fea9d55). .extract_by ... (f922d6e). .extract_first_by ... (f8de4a2). .extract_last_by ... (f8de4a2). .weighted_shuffle_by ... (688a57a). Added the.replace_all String alias for.gsub. (125effa). Added the.cache() and.uncache() Block methods. (224afd2). Added the.chrs alias for Array.decode() and Array.join_bytes(). (23b0aa3). Added the.head and.tail aliases for.first and.last Array and Range methods. (69d4976). Optimized the Array.nth_permutation() method. (5259c8d). More consistent deparsing of Complex numbers. (213499e). Number.as_cfrac() will now return integers, if possible. (acb51f9).
3.0328 Aug 2017 06:05 minor feature: Added the Array expand and recmap methods. (0d4cec6). Added the Number ipow2(n) and ipow10(n) methods. (7962ad7). Added the falling_factorial(n, k) and rising_factorial(n, k) methods. (0d9a98c). Added the Regex.run() alias for Regex.match(). (ddc5f04). Added support for storing the original value evaluated inside an if statement. (99bf5fa). Added support for capturing the arguments of the when and case statements. (0de6336). Added the Match.string() and Match.regex() methods. (6f44dfc). Added comparison and (in)equality support for Regex objects. (cc673df). Added the Number.rat_approx() method. (041eb51, 079bd23). Added the Number.as_cfrac() method. (5980cb8). New dependencies: Algorithm::Combinatorics and Algorithm::Loops. (d9c69ba, 71e1916). Implemented all the functions provided by Algorithm::Combinatorics. (c77c4e3, 329747c). Added the Number.polymod() method from Perl 6. (271058a). Extended the with statement to support capturing of multiple arguments. (03069a9). Faster stringification of floating-point numbers (including complex numbers). (8dd6c96). Optimization for integers in Number as_rat and as_frac. (dc9a1c7). Optimized the creation of Number objects from native signed and unsigned integers. (f3a465c). Extended Array.reduce() and Range.reduce() to accept an initial optional value. (0de25bd). Optimization inside Number.zeta() for unsigned native integers. (0bd26a1). Cached the generated code for the __BLOCK__ keyword. (17d9a5a). Minor optimizations inside the Number.ilog() method. (553e20e, ba36742). Number.next_prime() now uses Math::Prime::Util::GMP::next_prime() and is 2x faster. (c550d89). Re-implemented the Array.abbrev to match the behavior of Abbrev::abbrev from Ruby. (861038b). the FileHandle.copy() method. (f5b856e). two special cases in the Number class. (cc7e5b6). the multiple dispatch with anonymous pattern-expressions. (792cf44). Floating-points numbers are now deparsed as floats by the Sidef deparser. (dcf6aa5). the NaNi and Infi literal
3.0206 Jun 2017 09:25 minor feature: Added the is_coprime(n, k) Number method. (26ae193). Added the Hash.invert() alias for Hash.flip() and Hash.reverse(). (6b90a0b). Many internal simplifications and optimizations inside the Number class. (ba78194). Performance improvement in bernreal(n) for large values of n. (5319dd9). Minor simplifications in the Number cis() function. (8c41374). Re-implemented the ilog(x, y) function for better performance. (dffc692). the inheritance of a class defined inside a module. (c1d5c63). the return values of Number.eta() and Number.harmreal(). (a0ed475, 1e2150e). Number.digits() with an additional argument specifying the base, now returns an array of strings. (ac685c5).
3.0110 May 2017 06:45 minor feature: Added the Number is_smooth(n,k) method. Added support for the literal NaNi and Infi special imaginary values. Added the Array nth_perm() method, which returns the nth permutation of the self array. Added a check for exact divisibility of two integers. floor() and ceil() of a rational integer, now returns a number stored internally as an integer. Many other internal simplifications and optimizations in the Number class. Modified next_pow2(x) and next_pow(x, b) to return the smallest power of b not less than x. a segmentation fault in Complex() without arguments. a rounding error in next_pow2() and next_pow(). another rounding error in Number ilog(n, b). a regarding the equality of two NaN values.
3.0023 Apr 2017 03:15 minor feature: Minor change in the syntax for indented here-documents. Minor in here-doc with indentation. modified: lib/Sidef/Types/Number/Number.pm. New implementation of the numerical system. Inheriting from the same class, is no longer allowed. Require Math::GMPq =0.45. Minor code tweaks. Extended the Block.for() method to accept multiple ranges. Added the Block.
2.3705 Apr 2017 08:25 minor feature: Added the Array diff() method. (b043bec). Added the Number make_coprime() method. (b0ca3ca). Defined comparison for complex numbers. (d7ae774). Added the Complex mod() method and the Complex inoperator. (04e404d). Defined the sgn() function for Complex numbers. (9156a58). Added the Number mfactorial method. (3fb3c4d). Added the Complex acmp() method (absolute comparison). (9e94c45). Added support for inclusion of modules inside other modules. (6b8467e, a5c7269). Added the Number Ai() method (Airy function). (71c2636). Added the NameParam name() and value() methods. (ffce3b7). Better rounding for Complex numbers. (07e5926, 626d1a1). Better implementation of the Number fmod() method. (3a127ed). Minor simplifications and optimizations in the Hash class. (33a1193). Minor simplifications in the Number class. (fe0d15f). Minor optimization in multiple-dispatch with inheritance. (ede3854). Minor optimization in bernreal(n) for very large values of n. (72d901d). Reimplemented the Number mod() method entirely with rational numbers. (07d15f9). The name of the class is now included in the multiple dispatch error of 'possible candidates'. (fa368f4). Decreased the precision of floating-point numbers from 200 bits to 192 bits. (8340e73). Changed the syntax for in-method calls from name to `name`. (Haskell-like) (864b872). The Parser keyword will now point directly to the current instance of the parser that parsed the current program. (062b692). a strange in the deparsing of preunary operators. (0ba4e9a). an unsafe Array optimization in the Optimizer. (9675be7). Minor in Number remove() when the second argument is 0. (c180735). a special case in Number expmod(x,y,z) when y 0 and gcd(x, z) != 1. (0a7a641).
2.3603 Mar 2017 06:05 minor feature: Added the Hash.set_keys() method. (2556978). Added the Range min_by and max_by methods. (8681cae). Added the Number square_free_count(min, max) method. (e7eb7cd). Added the Number is_semiprime(n) method. (3830f95). Added the Number random_prime(min, max) method. (c72fd1f). Added the Number nth_prime(n) method. (b5e3890, c75b589, 2bbf3fb, d1d187e). Added random_nbit_prime(n) and random_ndigit_prime(n) Number methods. (aacf0aa). Added the Array.cartesian method, for computing the Cartesian product. (519437c, 49689b9). Number fadd(), fsub(), fmul() and fdiv() are all slightly faster. (bda00c8). Minor simplifications in Object.eq() and Object.cmp(). (ee2420e). Extended and generalized the Array zip() and mzip() methods. (fe40cea). Extended the include() parse-time function to accept glob-like paths. (a0d812e). Changed the output of Array.freq_by . (a4d6ea6). Renamed Number.pfactor() to Number.factor_exp(). (e8f976e). Object.kind_of() will now expect a string-like object, rather than an arbitrary object. (4539d95). the multiple dispatch with inheritance. (b668ae7, d05d954, 2439f03). the inclusion of files in the current namespace. (e424b7d). two special cases in Number.divisors() for n=0 and n=1. (ca5dbba). a minor in String.center() when the width is smaller than the length of the string. (94c7b6e).
2.3501 Feb 2017 20:05 minor feature: Added the Array and Range sum_by and prod_by methods. (9d830f3). Added the Number forperm and forcomb methods. (ca73dcb). Added the O alias for s. (a05c231). Added the Number.beta() method. (95b9093). Added the Complex.sqr() method. (b2f0da8). Added the Math.chinese() function. (e57b1d7). Added the Array.cons(n) method. (9c5dba9). Added the Number/Complex sin_cos() method. (cc11fd2). Added the Number/Complex lambert_w() method. (57e224b). New algorithm in Array.pick() and Range.pick(). (0e4786f). Added the Number ilog(), ilog2() and ilog10() methods. (6dfd647). Added the String.center() method to center a string into a given width. (7c4dee4). Several tail-call optimizations. (d44585f). Defined behavior for Complex() without arguments. (52e25ee). Minor code simplification in the decimal expansion of non-integers. (7af5537). Many simplifications and optimizations inside the Array class. (ec98af4, 92a0d0e, 543eafa). Extended Number.round() without an argument to mean Number.round(0). (52518c4). Minor optimization in Complex.new() when called with a Math::MPC object. (dbfc6d2). Extended the set of valid characters allowed in the name of identifiers. (2383481). Extended the Range first() and last() method to accept an optional number. (0e4786f). Number.is_prob_prime() uses a faster algorithm when invoked without an argument. (d624c22). Changed the behavior of an object in hash lookup. (60b5ffd, a4c34c7). Aliased the method Array.to_s() to Array.dump(). (9197d3c). Minor change in the code generation for dynamic constants. (dabacb7). Declaring more parameters after a slurpy parameter, is no longer allowed. (7052d6f). a minor inside the parser. (9c5dba9). a minor in the Sidef deparser. (617d352). Explicit undef values are now preferred over implicit ones. (e7042fd). The integer limits from Math::GMPq are used only when they are defined. (9955135). some special cases in the bessel_j() and bessel_y() Number methods. (9159c4b). const, static and define declarations a
2.3425 Dec 2016 03:16 minor feature: Added the !! postoperator. (5995615). Added the seed() and iseed() methods inside the Number class. (42b0216). Added the Array.bindex() method, to binary search a sorted array. (1ec991a). Added the Array.binsert() method, to insert an element into a sorted array. (b5ad92f). Added the Hash.pairs() alias for Hash.to_a(). (a49ed99). Added the Number bessel_j() and bessel_y() methods. (b652fc2). Added the Number.is_mersenne_prime() method. (f40a928). Added the Number.remove() method. (d903949). Added the Number.rad() method, which returns the radical of a given number. (a563aeb). Added the Number perfect_root() and perfect_power() methods. (8704be8). Added the File and String md5(), sha1(), sha256() and sha512() methods. (527c968). Added the Number.eta() method, which is Dirichlet's eta function. (d07e561). Added the Number.cis() method, defined as cos(x) + sin(x)*i. (194bbca). Added the Complex.hypot() method. (9a481cd). Empty local() declarations are now allowed. (a95f4c8). Extended RangeNumber methods sum() and prod() to accept an optional block. (b61ca0a). Optimized the sum() and prod() RangeNumber methods in some common cases. (2c73036). Extended the cross and zip meta-operators to accept alphanumeric method names. (08a9a95). Various optimizations inside the Perl deparser. (1e6775e, a5b5506). Experimental changes inside the parser, regarding the inoperators. (6957238, c1e42a1). Renamed the Number method factors_pairs() to pfactor(). (fd8f1c5). Removed the old and undocumented d string escape. (b09acf0). the localization of multiple variables. (857cb7c). an infinite loop inside the parser for include(...). (cc65d17). the acoth(x) method for x -1 and x 1 . (7a614c3). the interactive help when Sidef is installed. (805fbc1). some special cases of the method Number.irootrem(). (4f35ac7). Undefined methods from Fcntl are no longer created in the File class. (bebf042). the accuracy in Number.bernreal() for small n. (0c2de24). Minor in Number.irand() when the number
2.3314 Nov 2016 06:25 minor feature: Added the recursive Array.match() method. (a55424b). Added the... postoperator in the Match class. (aaa74e6). Experimental implementation of the MAIN() function from Perl 6. (a26075c). Added the experimental Array.getopt() method for parsing long arguments. (cd64146). Added the harmfrac() and harmreal() Number methods. (6cd5d3e, 175d5b7). Better initialization support for numbers. (79c13d0, 080ccbc). Rational exponentiation is slightly faster now. (72e8d9b). Number.bernfrac() is many order of magnitudes faster for large values. (006de26). Number.is_pow() with two arguments, is considerably faster. (f88151d). Code simplifications in Number.base(), which made it slightly faster. (67de959). Number.is_prime() is slightly faster for large numbers. (ee770c5). for x ? y ... is now equivalent with: for x in y ... . (ea25db8). a potential infinite-loop in Number.lgrt() and Complex.lgrt(). (4927708). and improved the support for premethod-calls. (69cd5d9). Math:: objects stored in state variables, are no longer blessed. (43a58c0). Removed the broken FileHandle.compare() method-alias. (9139948).
2.3208 Oct 2016 10:05 minor feature: Added the Number.lgrt() and Complex.lgrt() methods.(bc912ea). Added support for comparing objects that contain cyclic references. (dab878c). Added the Hash.as_tree(root) method, for converting a nested Hash into a tree. (e8c3ab2). Added the Array.part(n) method, which partitions an array into two parts. (fa8d261). Added the Array.kv() and Hash.kv() aliases. (e18f0af). Added support for rational exponentiation with an integer power. (b0e87f0). Added Number.li(n) for computing the logarithmic integral of n. (bb41c0d). Added bernreal(n) and bernfrac(n) Number methods. (27ad32d, ec96b9c). Added the Number.popcount(n) method for counting the number of 1-bits in n. (3d65a34). Extended Number.is_pow() to accept an optional argument for power. (f7ebeb4). Added valuation(n,k), which counts the number of times n is divisible by k. (2678827). New Number methods: fadd(), fsub(), fmul(), fdiv() and fpow(). (9d7813f). Slighlty faster dumping of nested structures. (02cc0bc). Extended the explicit notation for pre-method calls to behave like an unary operator. (3c34d99). Optimization for obj.("method") to obj.method (available at -O1) (a5bfdfc). Better performance of Perl function calls in void context. (e182484). Extended the.reduce method to accept an optional initial value. (7d0a04e). Increased the default of reps in Number.is_prime() from 12 to 20. (b456473). Increased the default floating-point precision from 128 bits to 200 bits. (60510d5). Implicit pre-method calls on blocks is no longer allowed. (74314c3). All the individual lines from FileHandle no longer include a trailing newline. (291a78e). Simplified the method iroot to no longer return complex numbers. (fa828d4). a segmentation fault in Number.modpow when the third argument is zero. (77f5e1b).
2.3109 Sep 2016 10:45 minor feature: Added support for literal complex numbers. (2f66c7c). Added the with/orwith/else construct. (9bac444). Added the String.findall(/regex/) method. (febe813). Added the FileHandle.fcntl() method. (3e53503). Added the built-in SocketHandle type to represent a socket handle. (3e53503). Added the pipe() and backtick() String methods. (df9f322). Added the powmod alias for modpow and expmod. (765e9b8). Extended the File.delete() method to remove all the links to a file. (a071375). Complex.i() invoked on a complex object, now multiplies the self object with i. (a5428a3). 6 faster code generation for operator-like methods. (1a8c6f4). Slightly faster deparsing of Number objects. (0d79a29). File.readlink() now returns a File or a Dir object correspondingly. (e4c31f6). Slightly faster stringification of floating-point numbers. (c97844b). Various other simplifications and performance improvements. (1d89775, 3d5dc58, 9b72a19). Math::GMPq =0.41 and Data::Dump are now required. (2075925, 8add044). Preunary operators no longer extend implicitly on multiple lines. (0b578c6). Number.sign() now returns 1, 0 or -1 instead of "+", "" or "-" (ead18b8). a potential in the deparsing of numerical ranges. (2b1b80b). (-Inf).root(1) to return -Inf instead of Inf. (a5428a3). A missing block after elsif(...) is now caught as expected. (5287e8f). a compatibility with perl-5.18. in the code generated for dynamical constants. (7ca5257). the Number.binomial() method to work correctly with large 64-bit unsigned integers. (2caedc2). the P() and X() quotes. (df9f322). a segmenetation fault for Number('1/0') (7094c49). the LayzMethod objects returned by Object.methods(). (8bc33e2). a minor in the deparsing of Complex objects. (1a96a7c).
2.3030 Jul 2016 17:45 minor feature: Support for multi-lines inside the REPL. (265749c, b6a8b83). Better redesigned numeric and string ranges. (ad7857d, 34b32ee, 969ed8d). Cache support for small integers ( = 0 and
2.2603 Jun 2016 10:25 minor feature: Dumping support for cyclic references. (cd2388d 7b39d16). Added the clone() and dclone() Object methods. (be63b10 52377cc a240b66). Extended the optimizer to cover named parameters. (0cfab89). Specialized code generation for numerical constants. (dd82f9e). include("file.sf") now resolves file paths relative to the current file. (6302d91). Array.copy() and Hash.copy() are deprecated. (use.clone() or.dclone() instead). Creating Complex objects with Complex arguments works correctly now. (afd11fd). and improved Block.ffork() to work correctly with blocks that return numeric objects. (2e53114).
2.2528 May 2016 11:25 minor feature: Database precompilation support for Sidef scripts. (9998c4b). Added the Enumerator built-in class. (d7a5e28). Added the Lazy built-in type to represent a lazy pipeline. (6459949). Added the Object.dump() and Match.dump() methods. (da2e4d0). Added the Hash.sort() method. (1cdcced). Rewritten the Number.irand() method to use the Mersenne Twister algorithm. (e17af6c). Added the following Array methods: slice_before(), slice_after(), compact(). (d7a5e28). New user-friendly API for parsing and executing Sidef scripts from Perl. (22f3ad3). Cached the code generation for subset blocks. (3a80249). Faster and better creation of string objects. (1e1345d). Faster Perl deparsing of strings. (75433b2). Improved the Optimizer to cover interaction between Number and Complex objects. (1a61fc7). Extended the Optimizer to recognize expressions in more places. (ac353bc). Added constant-folding support for exp2() and exp10() numerical methods. (86f7638). Various internal simplifications. (e1ed9ac bbf811f 031ce4c). Optimized the for-in loop to use a Perl subroutine as the block of the loop. (ab3313f). Removed the as_list() alias for to_list() in Hash and Array classes. (c2cd6b9). Removed the collect and filter method aliases. (d7a5e28). The Perl code generator no longer produces tidied code. (6bfcefe). a minor that changed the names of some types in error messages (69ea436). Minor -in Array.diff() for arrays with non-blessed objects. (cb99130). Minor -for 0Inf and for 0(-Inf). (629e20d).
2.2425 Mar 2016 19:45 minor feature: Support for subsets. (7bc973c, more info). Inheritance support for class variables. (e61c5be). Inheritance support for class attributes. (754cad0). Structures and subsets became lexical to the current scope only. (59d0f9b). Added the Any Hash case, which check if Any is a key in Hash. (5da1978). Experimental support for lazy evaluation with the method Object.lazy. (4cc49f6, 0d73901). Added the Array.freq_by which creates a frequency table from the mapped elements. (6b934f4). The Did you mean? feature is now available for misspelled variable names at parse-time. (2fbe734). Added the FileHandle.each_char method, to iterate over a file character by character. (3bc91b3). Many internal simplifications. (cc64b91). Improved the optimizer to cover data types. (bd8ec1a). Simplified the code generation for the for-in loop. (03789d8). Reduced a lookup for the init method in class initialization. (21dfbe1). Reduced some overhead in block calls, making them about 25 faster. (ab0faa3). Improved the formatting of error messages to be more human readable. (d8784dc). The gather/take construct no longer creates a temporary copy of the array. (266b44e). Optimized the algorithm which is internally used for the Did you mean? feature. (192e747). Optimized the optimizer to use an O(1) algorithm for rule-matching, instead of O(n). (989feb2). Optimized the following Array methods: and, diff, or, xor. (e9a49af, 53855dc, aa2bf7e, 79ab66d). Replaced the base pragma with the more lightweight parent in code generation of user-defined classes. (8980b26). Forbidden the inheritance from structures. (2e1aeae). nil, compared to any other object, is always lower. (6604cbe). Removed the support for old class constants (ClassName::CONST). (20b2eb9). the compilation in some cases with -c. (248e247). the code generation for anonymous structures. (fe0546c). a minor in parsing structures with recursive types. (f093f37). the code produced by -Rperl in some special cases. (70de42a). the RangeNum class
2.2307 Mar 2016 09:45 minor feature: Auto-stringification for named parameters. (ccb6f3e). Special methods ==, and are now overloadable. (366ccc5). Added the "Did you mean?" feature, for non-existent method calls. (4128110). Added the unary caret operator to create an exclusive range. (a16df42). Added general support for matrix-iteration with the for-in loop. (2c57915 c16b95c). Added the Array.slices(n) method, which returns a matrix with n elements per row. (bcc1190). Better stringification of Block objects. (1bbb790). Structure names are now deparsed as data types (834d232). Better parsing of the if, while and for constructs. (9d3d3be). Optimized and extended the for-in loop to work with any object. (68ff1cd). Micro optimization in code generation for operator-like methods. (49c17f4). All ranges became immutable objects. (ed0b8e2). Removed the inellipsis operator (...). (afdf08c). Bareword data types are now parsed correctly as data-type objects. (4e7c001). Renamed the Object.super_join() method to Object.interpolate(). (e4b0c1b). Forbidden the calling of pre-methods without parentheses (f0a56ef). a minor-parsing in declaration of variables on multiple lines. (f9c252a). a segmentation fault for integer division with non-integer operands. (3c904ac). Half-a inside the Block.ffork() method. (badb582).
2.2208 Feb 2016 13:25 minor feature: Added the Array.jaro_distance() method (4e91b02). Added the Number.round() alias for Number.roundf() (a817703). Added the Number.imod() and Number.ipow() methods (7088344). Added the all and any methods inside the RangeNum class (a6657c3). Added the Number.itimes iterator method (af3b989). Added the Number.as_int() and Number.as_float() methods (f66c8e4 00b2fab). Added support for multiple lines in interactive mode (c639a8a). Added support for loading code from files in interactive mode (82c80e8). Added support for saving an interactive session to a file (f52cedb). Added the Hash.each_k and Hash.each_v aliases for Hash.each_key and Hash.each_value respectively. (dde9ed4). Many optimizations inside the Number class (451ce51 7362990). Significant improvements and simplifications inside the RangeNum class (f22587c 71f678f). Improved the Number.rand() method to return random floats of a greater precision (af8ad0c). Extended the Number.root() to accept Complex numbers as the nth root. (fbb1268). Improved the Complex.cbrt() method to return a more accurate result (b9429bc). Array.push and Array.unshift are slightly faster now (7b207f3). Better stringification for very small values (bbc249f). Inf.times is now a little bit faster and truly unbounded (ee1ed52). Improved the Number.pow() method for negative integers to return the exact result (dce6459). Extended the Number left-shift and right-shift operators to work with negative integers (d3c6ab7). Minor optimization in code-generation for != and ! operators (36dee2f). Extended the Block.fork() method to accept and pass parameters to a forked process (80051b2). Number.roundf() is now implemented natively. (93ff7d7 79512a6). The stringification of numbers is now also implemented natively (17a8925). Changed the -P command-line switch to specify the precision in decimal digits (f66c8e4). Sidef now runs inside a virtual environment, which prevents accidental namespace collisions (0b864cf). The operands for and
2.2115 Jan 2016 16:45 minor feature: Added stringification support for ranges (213ae43). Classes can now inherit fields from structures (4db2844). Added the FileHandle map and grep methods (8db434b). Added support for block parameters with slurpy variables (cddb544). Added the Number.irand() method to return a random integer (d44611c). Added the Array.keys method to return the indices of the self array (6aba0f8). Improved the NaN value to support all the basic operations (843375a). Improved the -c command-line switch works more generically (5b02da0). Faster integer check for numbers (325afb0). Extended the Array.grep() method to support a regular expression as argument (8db434b). Extended the initialization of Complex numbers to accept a string as a complex value (309dee2). Extended the Number.is_prime() method to accept an optional parameter for accuracy (cbfd8d2). Math::Big Float,Int,Rat objects returned by Perl modules, are now converted correctly (8350cd5). Removed the -d command-line switch (beff0a8). __BLOCK__ will no longer refer to pseudo-blocks (06d68d1). Arguments to String methods are now strigified with string context (5c5ec44). The original Block.fork method is now available as Block.ffork (e0b276d). Minor -in parsing the post... operator followed by a newline (5a7ab18). Numbers inside the Socket object are now unboxed correctly (c9c09f9). Minor -in parsing default parameter values in block parameters (52f6e98). Minor -inside the Sidef deparser for consecutive function calls (44f25bb). a segmentation fault for n 0 and 0.divides(n) (202ef13). Anonymous methods are no longer stored as part of the class methods (1181d62).
2.2003 Jan 2016 09:45 minor feature: Switched from Math::Big Float,Int,Rat to Math:: MPFR,MPC,GMPz,GMPq (445a699). Added support for initialization of numbers in different bases (dec506c). Complex numbers and real numbers are now blended together (1a507bb). Added the Inf and -Inf keywords to represent positive and negative infinity. Added the NaN keyword to represent the Not a Number value (be1542b). New methods inside the Number class, such as: fib, gamma, is_prime, primorial, etc. Added the with(exp) ... statement, similar to that from Perl 6 (bd8c1da). Added support for Unicode symbols in Math constants, such as Math::? (d67be5d). Added the Number.base(n) method to return a number in a given base (33df118). Added a new syntax for changing or declaring class variables (Class!name) (a86d4cb). Better support for Complex numbers (b6ed0b9 0c85c73). Extended the support for ranges with floating-point numbers (2faee2a). Better stringification of numbers (e.g.: (100! + 1) / 2 will display the exact result) (a86d4cb). Removed the Byte(s), Char(s) and Graph(s) built-in types (445a699). Changed the behavior of // operator to mean integer division (d4199ad). Redefined the behavior for Inf0 to return 1, instead of NaN (b9fc23f). the String.count(regex) method to return correctly the number of matches (8affc32).
2.1327 Dec 2015 03:17 minor feature: Auto evaluation-conversion for lazy-methods (ef52c90). Added the Number.modinv() method (b049eb0). Added the Object.bless method to return a blessed object in the self class (0603970). Added the Array.each_slice(n, ... ) method (5e94052). Added the Array.each_cons(n, ... ) method (203ce65). Added experimental support for changing the global precision and accuracy of numbers (8157b53). Optimized all the op-assign operators, such as +=, -=, etc... (2dd3ec7). Simplified the code used in calling subroutines from Perl modules (0b786ec). Improved the support for autovivification (4455a3f). String.first() and String.last() will now accept a number as an argument (801ff02). Optimized the String.match() and String.gmatch() methods (31f81c4). Better dumping of regular expressions (32262a1). Pair.first and Pair.second are now lvalues (93af122). Optimized and improved the Array.combinations() method (be956e5). Better translation of certain expressions (1e2133f). Faster translation of strings with code-points between 127 and 255 (e7c3756). Array.ft(from, to) is now considerably faster (3a127a8). Minor performance improvement in stringification of Boolean values (0968745). Renamed the built-in object SIG to Sig (42a1483). Renamed Array.each_with_index to Array.each_kv (0cc0dcf). Renamed Array.reduce_pairs to Array.pairmap (ce2fc7b). Blocks will always be called as blocks, and never as functions (782e847). In list assignments, the last lvalue is now returned (160c97b). Unary operator - will now call the neg method, instead of negate (0621e50). Number.range() with only one argument is no longer inclusive (6bc3074). The __BLOCK__ keyword is now translated correctly as a block (572cabb). the -c command-line switch to work when Sidef is installed (8b8c966). the Convert.to_f() method to work with rational numbers (a07896d). Flat lists as array indices will work as expected (5fa3c64).
2.1211 Dec 2015 03:18 minor feature: Support for multiple dispatch (ab914f8). Support for functional pattern matching (e756b97). Support for class attributes with the has keyword. (7de49f0). Auto-conversion of arguments from Perl callback functions (8c7debc). Added the Array.last_by method (423f190). Added the -k switch to keep track of potential unsafe interpretations (e31de40). Added the Array.dig() and Hash.dig() methods (6ce5ad5). Added the... preoperator to represent unimplemented code (b1604b3). Added the Array.freq() and the Hash.map methods (ae25298). Added the String.numbers and String.each_number methods (1f7991d). Added the Hash.count method (59b595d). Added the Bool.pick method which randomly returns true or false (d71f860). Added the following Complex methods: root, roots, polars and reals (501b714 26f78d4). Optimized the preand post++ and -- operators (ab914f8). The operator != is slightly faster now (84483ef). Improved the assertions to include the actual values (d584e60). Improved the given/when construct (e9f70c7). All the meta-objects are created directly inside the parser (80bae2e). Better localization of the topic variable (_) (c723701 6c45643). Array.rotate will always return a new array (606c837). the deparsing of the bare Block keyword (754f102). Deparsing code to Perl (with -Rperl) will now include binmode(STD*, ':utf8') (4a9ebf1).
2.1125 Nov 2015 06:05 minor feature: Added the for var in array ... construct, to iterate over an array (436a730). Added the cross ( X) and zip ( Z) meta-operators from Perl 6 (22f950b). Added support for checking multiple return-types. (9998e5c). Added the rational-division operator (//) which creates a Math::BigRat object (2eac143). Added the Array.map_with_index method (3ae5182). Added the String.prepend() which adds a sub-string in front of the self string. (6f5fefb). Added the Array.fetch() and Hash.fetch() methods to fetch a value with a default value (5edff8a). All variables are now block-scoped, instead of function-scoped. (3507cad). Simplified and improved the local variables (4409629). Extended the String.contains() method to support regular expressions. (87b8a4a). Memoization of functions and methods is considerably faster. (6059550). Array.sum() and Array.prod() will accept an argument as a starting value (775fe8f). Generalized the Array.index() and Array.rindex() to work with objects of any type (d9b1608). Optimized the Array.rotate() method (b73f61a). Improved the support for assertions to display exactly where the assertion failed (0350534). die and warn keywords will now display the file and the line number (8710936). Improved greatly the -O1 optimization level to cover more constructs (b18f611 e3a1a1f). Modified the read() built-in function to accept a message and a type. (de7537b). do is no longer considered a keyword, unless it is followed by a pair of curly brackets. Bare blocks can no longer be called with named parameters (3f492c1). Minor -in deparsing block arguments with default values. (974f33d). Minor -inside the parser regarding the declaration of variables (451f169). nil values are now displayed correctly in interactive mode (-i) (adebde5).
2.1002 Nov 2015 02:25 minor feature: All functions and methods are now closures. The goto keyword and support for labels. Support for global variables. Localization support for magic variables. Support for real-constants. Support for do ... while (expr) support. The inkeywords if and while. The Grapheme and Graphemes built-in types. Traits for functions and methods. The Array.sort_by ... method (0687ff3). Preand postdereference. Better support for structures (struct Name ... ) (a353469). More constants can now be declared at once. Stricter rules for comparison operators. Optimized the Array.uniq and Array.last_uniq methods. Slurpy parameters now support default values (7bdfafe). Better type-checking for typed parameters (ad1f961). Better support for named parameters (8097b21). Better support for declaration of variables with default values (5952210). Method calls can now expand on multiple lines (c1dc82f). eval() is considerably faster now. Semicolons are now fully optional. The regex variables ( 1, 2...) are gone. (1eaf761). Removed the triple-equal (===) operator. Removed the support for class def variables. The gather/take construct is now recursive-friendly. break(n) and next(n) no longer work (use goto instead). The support for multiple dispatch is currently unimplemented. 0.11-EOL...2.10. https://github.com/trizen/sidef2/commits/master.
0.11-EOL13 Oct 2015 16:05 minor feature: Added experimental support for implicit block calls. (a0c1e81). Added the Class.alias() method for creating aliases to methods. (3eea5a1). the FileHandle.slurp() method to work with :utf8 layers in future version of Perl. (f46fe9b).
0.1017 Sep 2015 14:25 minor feature: Added the Block.all and Block.any methods (6a39c5b). Added the Array.index and Array.rindex methods (6da2ce7). Added the following String methods: bin, oct, num (98e7a11). Added the Match.join method to join the captured matches (087c773). Added support to assign a value to a reference with dereferencing (d475f33). Added the ClassInit.method and ClassInit.invoke methods (7fd6816). Added the Number.atan and Number.atan2 methods (fba18cc). Added the Sys.wait, Sys.fork and Socket.socketpair methods (6617f38). Added the Range.map method for number ranges (00fc434). Improved the -O3 optimization level (376d7bf, 72ca7d9). Extended the Hash.default method to accept a block of code. (4522d5b). Extended the Hash.delete method to delete more than one key (8a17915). Extended the Number.range method to accept a third parameter (fa009ac). Added auto-stringification for Match and Complex objects. (1428ebc 6dae437). Hash.copy and Array.copy are now much faster and safer (86d9350). Extended the op hyper-operator to work with arrays of different sizes (3b8612a). Extended the smartmatch operator ( ) to work with Range Obj (f45a4c7). Extended the MultiArr object to work with arrays of different sizes (0f4f985). The output of backticks is no longer UTF-8 decoded (f369175). Removed the camelCase method-aliases, along with other core changes (19ab31b). Changed the behavior of the given/when construct to the smartmatch operator (ceecf82). a critical related to the initialization of Math::BigFloat (9ee37d0). Returned objects from module calls are now objectified correctly (43e1f00). the Hash.flip method -- now it works correctly (86d9350). w(...) arrays are now created dynamically at run-time (8f6e9e7). The unary operator ? and ! will now work correctly on overloaded objects (41f9013).
0.0801 Aug 2015 17:17 minor feature: What's new Generalized the syntax for prefix method calls. (3828759 3f119d9) Added the Block.pfork method, which is a lightweight version of Block.fork (24e928e) Added the String.looks_like_number() method and others (33bf066) Added the -C command line switch to check the syntax of a program (a5332b0) Added the assert, assert_eq and assert_ne built-in keywords. (354e22e) Added the s(...) and S(...) quotes (f527e18) Changes Modules are now executed in reversed parse order (4bd4f97) Simplified the internal object system, among other core changes (48c1f1f b4da2e2) Number.divmod() and some other methods will return a list instead of an array (d0fdf0f) Added srand() after each fork to re-seed the random number generator (8fdb831) Changed the behavior of the smartmatch operator for String String (0322aab) Bug-fixes Fixed a stack bug for variables initialized inside the condition of a while loop (d7eb89e) Fixed a bug related to object stringification of various objects (814ae15)
0.0925 Jul 2015 06:05 minor feature: Added support for nexting two or more loops with next(n). (b9b242e). Added the Array.each_index ... method to iterate over the indices. (e950204). Added the.dump method for user-defined classes. (758ab9c). Added the Class.__class__ method to get the class of an object (502a5ec). Added the FileHandle and DirHandle types. (5c80e36). Added the.levenshtein method for String and Array objects. (f32aae1). Added the.METHODS method for user-defined classes. (6122dd9). Added the.method method for user-defined classes. (dbf29e5).
0.0707 Jul 2015 23:02 major feature: Added support for nexting two more loops via next(n). (b9b242e) Added the Array.each_index ... method to iterate over the indices. (e950204) Added the .dump method for user-defined classes. (758ab9c) Added the Class.__class__ method to get the class of an object (502a5ec) Added the FileHandle and DirHandle types. (5c80e36) Added the .levenshtein method for String and Array objects. (f32aae1) Added the .METHODS methods for user-defined classes. (6122dd9) Added the .method method for user-defined classes. (dbf29e5) Improved the .METHODS method for built-in types. (aaa3382) Improved the parsing of classes and the parsing of return types from functions. (5c80e36) Performance improvements. (46b5379, 1a44f27) Changed slightly the behavior of the smartmatch operator ( ) (b1d44e1) Undefined method calls for user-defined classes are now fatal. (858420f) File. and File.cmp no longer refers to File.compare (e060408) Removed the following operators: ??, and . (dad6bd3) Merged the PipeHandle object into FileHandle. (5c80e36) Renamed has_method into respond_to for user-defined classes. (dbf29e5) Fixed a minor related to array autovivification on slice creation. (3b7ee7e) Minor fix for parsing type-constants. (966223c)
0.0620 Jun 2015 00:59 major feature: Added functional style for method calls (#27) (19d18a9) Added the Variable.defined() function/method (c155e2a) Added parsing support for consecutive calls (e.g.: f()()) (f37f99e) Added string and boolean context overload for user-defined classes (28de310) Added the is_a and is_an methods to user-defined classes. (65340bf) Added support for n() and i() to create arrays of numbers and integers (b01a5d1) Added support for hash parameters and hash init variables (c6b240b) Added the Complex.dump() method (e769eca) Number.of now initializes a counter. (e.g.: 10.of i ... ) (f37f99e) Block.fork() now uses Storable instead of Data::Dump (aaf657d) Extended the Array.concat() method to accept any type of argument. (93bec83) Improved the String.dump() method to work more nicely (d166fcc) Many performance improvements and stability improvements. (8ea587c)
0.0503 Jun 2015 13:37 major feature: Added the ClassInit += operator which inherits methods from a class. (e618903) Added experimental support for Sidef to Perl code conversion. (sidef -Rperl) (7b0dc72) Added the -O3 level of optimization which generates and runs native Perl code. (7b0dc72) Added the Range.includes() method. (05a44b2) Added the Ref keyword type to represent a reference type. (26a2893) Added the Array.any method which tests an array against an expression. (d8dac99) Added Math constants (example: Math::PI, Math::e, Math::ln2, ...) (3fc895f) Added support to access class parameters without specifying the self object. (8454630) Added the File.truncate() method which truncates a file to a given size. (8d1172b) Added the Array operator as alias for append and push. (428632f) Added the Sys.copy() method which clones any type of object. (c7a343a) Added the following given/switch operators: , ?? and ... (aa573ea)