module Sashite::Snn

def self.parse(snn_string)

Other tags:
    Example: Parse different SNN formats -

Raises:
  • (ArgumentError) - if the SNN string is invalid

Returns:
  • (Snn::Style) - parsed style object with letter and side attributes

Parameters:
  • snn_string (String) -- SNN notation string
def self.parse(snn_string)
  Style.parse(snn_string)
end