Giter Site home page Giter Site logo

Comments (13)

chrismccord avatar chrismccord commented on May 4, 2024 7

Can somebody elaborate please? Will using MODULE "just" make my code more stable against renaming? (if so, wouldn't @chrismccord 's aliasing defeat the purpose?)

yes. For me, doing a find/replace in a file should my module name change is a worthy tradeoff. Note: I'm fine with __MODULE__ when I just want to grab a reference to it, but I prefer an alias for structs, since you're often passing those around and accepting them as arguments. To me, the alias reads clearer. I'd rather see:

def name(%User{fname: fname, lname: lname}), do: fname <> " " <> lname

than

def name(%__MODULE__{fname: fname, lname: lname}), do: fname <> " " <> lname

from elixir_style_guide.

obrok avatar obrok commented on May 4, 2024 6

I sometimes do

alias __MODULE__, as: SomeModule 

to guard against renames as well as have a nice looking SomeModule instead of __MODULE__ in the code.

from elixir_style_guide.

chrismccord avatar chrismccord commented on May 4, 2024 5

My preference here is an alias:

defmodule SomeNamespace.SomeModuleName do
  alias SomeNamespace.SomeModuleName

  defstruct name: nil
  @type t :: %SomeModuleName{name: String.t}

  def name(%SomeModuleName{name: name}), do: name
end

from elixir_style_guide.

asaaki avatar asaaki commented on May 4, 2024 4

You can also make the aliasing more concise: alias __MODULE__

from elixir_style_guide.

Calamari avatar Calamari commented on May 4, 2024 2

Intetresting reasoning. It totally makes sense. If this rule gets to the Styleguide, can this "why?" be included? I think reading the styleguide is good, but also know why those particular rules are useful, can really help adopting (and remembering) them.

from elixir_style_guide.

styx avatar styx commented on May 4, 2024

Hope @josevalim will left his opinion too (:

from elixir_style_guide.

asaaki avatar asaaki commented on May 4, 2024

I also adopted this behaviour, so ๐Ÿ‘

from elixir_style_guide.

defp avatar defp commented on May 4, 2024

@chrismccord ๐Ÿ‘

from elixir_style_guide.

schnittchen avatar schnittchen commented on May 4, 2024

Can somebody elaborate please? Will using MODULE "just" make my code more stable against renaming? (if so, wouldn't @chrismccord 's aliasing defeat the purpose?)

from elixir_style_guide.

schnittchen avatar schnittchen commented on May 4, 2024

Thx @chrismccord, that makes total sense.

from elixir_style_guide.

phanimahesh avatar phanimahesh commented on May 4, 2024

I like @obrok's suggestion.

from elixir_style_guide.

whatyouhide avatar whatyouhide commented on May 4, 2024

I'm ๐Ÿ‘ on @chrismccord suggestion, it's the one I use regularly in my code.

from elixir_style_guide.

christopheradams avatar christopheradams commented on May 4, 2024

Please check PR #114 and let me know if you think it addresses this issue. It advises using __MODULE__ for module self-references, and recommends using an alias if you desire a clearer, unique name.

from elixir_style_guide.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.