class HDLRuby::High::StringE

Describes a string.

NOTE: This is not synthesizable!

Public Instance Methods

to_expr() click to toggle source

Converts to an expression.

# File lib/HDLRuby/hruby_high.rb, line 3182
def to_expr
    return StringE.new(self.content,*self.each_arg.map(&:to_expr))
end
to_low() click to toggle source

Converts the connection to HDLRuby::Low.

# File lib/HDLRuby/hruby_high.rb, line 3187
def to_low
    return HDLRuby::Low::StringE.new(self.content,
                                     *self.each_arg.map(&:to_low))
end