Query: multidimensional
OS: mojave
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
multidimensional(3) User Contributed Perl Documentation multidimensional(3)NAMEmultidimensional - disables multidimensional array emulationVERSIONversion 0.011SYNOPSISno multidimensional; $hash{1, 2}; # dies $hash{join($;, 1, 2)}; # doesn't dieDESCRIPTIONPerl's multidimensional array emulation stems from the days before the language had references, but these days it mostly serves to bite you when you typo a hash slice by using the "$" sigil instead of "@". This module lexically makes using multidimensional array emulation a fatal error at compile time.METHODSunimport Disables multidimensional array emulation for the remainder of the scope being compiled. import Enables multidimensional array emulation for the remainder of the scope being compiled;SEE ALSO"$;" in perlvar, B::Hooks::OP::Check.AUTHORDagfinn Ilmari Mannsaaker <ilmari@ilmari.org>COPYRIGHT AND LICENSEThis software is copyright (c) 2010 by Dagfinn Ilmari Mannsaaker. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.18.2 2013-02-07 multidimensional(3)